cpp-template/main.cpp

8 lines
97 B
C++
Raw Permalink Normal View History

2020-12-02 19:37:52 +01:00
#include <iostream>
int main() {
2020-12-02 19:38:53 +01:00
std::cout << "Hello World!" << std::endl;
2020-12-02 19:37:52 +01:00
return 0;
}