From f2bb89223d4a5690a3136b574cc321159de39dba Mon Sep 17 00:00:00 2001 From: latenightz Date: Thu, 29 Apr 2021 15:18:47 +0000 Subject: [PATCH] Add 'hello.cpp' --- hello.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 hello.cpp diff --git a/hello.cpp b/hello.cpp new file mode 100644 index 0000000..1b3e924 --- /dev/null +++ b/hello.cpp @@ -0,0 +1,9 @@ +// Hello world in C++ + +#include + +using namespace std; + +int main() { + cout << "Hello, World!\n"; +} \ No newline at end of file