Add 'hello.cpp'

This commit is contained in:
latenightz 2021-04-29 15:18:47 +00:00
parent 4d7a911f8b
commit f2bb89223d
1 changed files with 9 additions and 0 deletions

9
hello.cpp Normal file
View File

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