light/Sandbox/main.cpp

9 lines
107 B
C++
Raw Normal View History

2021-05-19 21:28:51 +04:30
#include <iostream>
int main()
{
std::cout << "Hello world!" << std::endl;
std::cin.get();
return 0;
}