From b7edf5ea643c8dcb4d88319f990d3dba55232b5b Mon Sep 17 00:00:00 2001 From: HanEmile Date: Tue, 14 Feb 2017 17:26:07 +0100 Subject: added Hello World .cpp --- a.out | Bin 0 -> 9216 bytes cpp/main.cpp | 1 - main.cpp | 6 ++++++ 3 files changed, 6 insertions(+), 1 deletion(-) create mode 100755 a.out delete mode 100644 cpp/main.cpp create mode 100644 main.cpp diff --git a/a.out b/a.out new file mode 100755 index 0000000..e4e76b7 Binary files /dev/null and b/a.out differ diff --git a/cpp/main.cpp b/cpp/main.cpp deleted file mode 100644 index 8d1c8b6..0000000 --- a/cpp/main.cpp +++ /dev/null @@ -1 +0,0 @@ - diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..afed0aa --- /dev/null +++ b/main.cpp @@ -0,0 +1,6 @@ +#include + +int main(){ + std::cout << "Hello World" << std::endl; + return 0; +} -- cgit 1.4.1