Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions C++/01. Introduction/001. Say Hello, World! With Cpp.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
// Problem: https://www.hackerrank.com/challenges/cpp-hello-world/problem
// Score: 10


#include <iostream>
#include <iostream> // 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;
}