hello-world-cpp/main.cpp
2025-01-09 18:07:29 +10:00

8 lines
97 B
C++

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