stuff/hello.cpp

9 lines
111 B
C++
Raw Permalink Normal View History

2021-04-29 15:18:47 +00:00
// Hello world in C++
#include <iostream>
using namespace std;
int main() {
cout << "Hello, World!\n";
}