stuff/hello.cpp

9 lines
111 B
C++

// Hello world in C++
#include <iostream>
using namespace std;
int main() {
cout << "Hello, World!\n";
}