cpp_playground/Cmake Intro/hello.cpp

7 lines
84 B
C++

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