light/Sandbox/main.cpp
2021-05-19 21:28:51 +04:30

9 lines
No EOL
107 B
C++

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