cpp_playground/Cmake Intro/hello.cpp

7 lines
84 B
C++
Raw Normal View History

2022-01-11 13:58:45 +00:00
#include <iostream>
int main()
{
std::cout << "Hello World!\n";
return 0;
}