From 739d41432721e139c563a73b1f7b6f2ce012c6a7 Mon Sep 17 00:00:00 2001 From: Chibici Tiberiu Date: Thu, 1 Feb 2018 15:22:12 +0200 Subject: [PATCH] Added hello world application. --- hello.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 hello.cpp diff --git a/hello.cpp b/hello.cpp new file mode 100644 index 0000000..98fdda8 --- /dev/null +++ b/hello.cpp @@ -0,0 +1,7 @@ +#include + +int main() +{ + std::cout << "Hello world!" << std::endl; + return 0; +} \ No newline at end of file