playground/cpp/01-hello.cpp
2022-07-17 20:42:42 +02:00

8 lines
95 B
C++

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