C++ Hello World

C++ code posted by Sir Lulzalot
created at 14 Jun 00:52, updated at 17 Jul 22:56

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>

using namespace std;

// Tolle Funktion
int main()
{
  cout << "Hello World!" << endl;

  return 0;
}
132 Bytes in 2 ms with coderay