From c3f74ffcd5eaf25877e55197d2c951cb5599483d Mon Sep 17 00:00:00 2001 From: Ksamiran <60512207+Ksamiran@users.noreply.github.com> Date: Tue, 6 Oct 2020 21:22:09 +0530 Subject: [PATCH 1/2] Update README.md added details --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7d6e2cb..6dac27c 100644 --- a/README.md +++ b/README.md @@ -1 +1,2 @@ -# cpp-hello-world \ No newline at end of file +# cpp-hello-world +# basic-cpp-code From e8abb4dbdedc16a7e789199198379b2c98fac76b Mon Sep 17 00:00:00 2001 From: Ksamiran <60512207+Ksamiran@users.noreply.github.com> Date: Tue, 6 Oct 2020 21:30:14 +0530 Subject: [PATCH 2/2] Update and rename hell.cpp to hello-world.cpp updated print function --- hell.cpp => hello-world.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename hell.cpp => hello-world.cpp (65%) diff --git a/hell.cpp b/hello-world.cpp similarity index 65% rename from hell.cpp rename to hello-world.cpp index 5cdc9f0..acd11d0 100644 --- a/hell.cpp +++ b/hello-world.cpp @@ -2,7 +2,6 @@ using namespace std; int main() { -printf("hell\n yess"); +printf("Hello World!"); return 0; - -} \ No newline at end of file +}