9 lines
No EOL
107 B
C++
9 lines
No EOL
107 B
C++
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
std::cout << "Hello world!" << std::endl;
|
|
std::cin.get();
|
|
|
|
return 0;
|
|
} |