From db21798a7480bee3ce6b05907092d94b6f5cdd17 Mon Sep 17 00:00:00 2001 From: _Kiire Date: Sat, 3 Oct 2020 13:49:19 +0200 Subject: [PATCH] Example --- C++/helloworld.cpp | 2 +- helloworld.cpp | 8 -------- 2 files changed, 1 insertion(+), 9 deletions(-) delete mode 100644 helloworld.cpp diff --git a/C++/helloworld.cpp b/C++/helloworld.cpp index c70e767..35df75f 100644 --- a/C++/helloworld.cpp +++ b/C++/helloworld.cpp @@ -2,7 +2,7 @@ using namespace std; int main() { - cout<<"hello world"; + cout<<"hello, World!"; return 0; } diff --git a/helloworld.cpp b/helloworld.cpp deleted file mode 100644 index 4cd468c..0000000 --- a/helloworld.cpp +++ /dev/null @@ -1,8 +0,0 @@ -#include -using namespace std; -int main() -{ - cout<<"hello world"; - return 0; -} -