script-linux/newp-template/cpp.template/src/main.cpp

7 lines
95 B
C++
Raw Normal View History

2023-02-01 19:08:43 +01:00
#include <iostream>
int main(){
std::cout << "Hello World!" << std::endl;
return 0;
}