From 22c545cb52e3154ab92abee4273232b779ce3541 Mon Sep 17 00:00:00 2001 From: Saumya Aggarwal <32450665+Saum1998@users.noreply.github.com> Date: Fri, 26 Jan 2018 15:05:11 +0530 Subject: [PATCH] added return statement --- Lesson-1/examples/helloworld.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Lesson-1/examples/helloworld.cpp b/Lesson-1/examples/helloworld.cpp index 3daff6e..f867057 100644 --- a/Lesson-1/examples/helloworld.cpp +++ b/Lesson-1/examples/helloworld.cpp @@ -4,4 +4,5 @@ int main() { //Hello World Demo cout << "Hello, World!"; + return 0; }