Files
hello-world/c/c++.cpp
bdejean 9f640d0ae8 More idiomatic C++
Drop endl which is not newline and the return 0 that is implicit.
2020-04-26 15:36:58 +02:00

7 lines
69 B
C++
Executable File

#include <iostream>
int main()
{
std::cout << "Hello World\n";
}