gobuch/hello-world/cplusplus/hello.cpp

6 lines
78 B
C++
Raw Normal View History

2020-08-21 04:26:40 +00:00
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}