From b2935df0faeb10872525273763876ac414417b06 Mon Sep 17 00:00:00 2001 From: Bora Ikizoglu Date: Sat, 21 Jan 2017 04:59:28 +0200 Subject: [PATCH] C++ Programlama Dilinde Hello World --- MerhabaDunya.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 MerhabaDunya.cpp diff --git a/MerhabaDunya.cpp b/MerhabaDunya.cpp new file mode 100644 index 00000000..63c2489b --- /dev/null +++ b/MerhabaDunya.cpp @@ -0,0 +1,9 @@ +#include +using namespace std; + +int main () { + + cout << "Hello World"; + return 0; + +}