From f9c778349a436b02abc9e4330bbaa0d1eb35cad2 Mon Sep 17 00:00:00 2001 From: Antoine James Tournepiche <26577763+AntoineJT@users.noreply.github.com> Date: Tue, 21 Jul 2020 03:50:52 +0200 Subject: [PATCH] Improve C++ example (#774) --- c/c++.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/c/c++.cpp b/c/c++.cpp index 6ec7ffa8..f67b8157 100755 --- a/c/c++.cpp +++ b/c/c++.cpp @@ -1,8 +1,6 @@ #include -using namespace std; - int main() { - cout << "Hello World\n"; + std::cout << "Hello World" << std::endl; }