hello-world/hello.cpp

7 lines
101 B
C++

#include <iostream>
int main()
{
std::cout << "Hello world!" << std::endl;
return 0;
}