// BASIC C++ HELLO WORLD
// This is to include the needed library for basic programming in c++
#include <iostream>
// Getting rid of the need to use std::
using namespace std;
// Main Function
int main() {
// Cout is like print, << is used for sending the text to the cout.
//
is for new line.
cout << "Hello World
";
}