diff --git a/C++/01. Introduction/001. Say Hello, World! With Cpp.cpp b/C++/01. Introduction/001. Say Hello, World! With Cpp.cpp index d3ee14d..a6611ef 100644 --- a/C++/01. Introduction/001. Say Hello, World! With Cpp.cpp +++ b/C++/01. Introduction/001. Say Hello, World! With Cpp.cpp @@ -1,10 +1,12 @@ // Problem: https://www.hackerrank.com/challenges/cpp-hello-world/problem // Score: 10 - -#include +#include // This allows us to use input and output (cin, cout) int main() { + // Print "Hello, World!" to the output std::cout << "Hello, World!"; + + // Return 0 to indicate the program ended successfully return 0; }