gobuch/hello-world/cplusplus/hello.cpp
2020-08-21 06:26:40 +02:00

6 lines
78 B
C++

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