Jump to content
CvGaming

About This Club

A test club for programmers

  1. What's new in this club
  2. //c++ väg 1, inte jobbig. #include <iostream> using namespace std; int main() { cout << "Hello, World!"; return 0; } //c++ väg 2, jobbig. #include <iostream> int main() { std::cout << "Hello, World!"; return 0; }
  3. #Python 2 print "Hello World!" #Python 3 print("Hello World!")
  4.  
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.