Annotated better for beginners, fixed typo

This commit is contained in:
TheMrIron2
2017-12-07 21:24:00 +00:00
committed by GitHub
parent 8a7e32f5f1
commit 989390fe80

View File

@@ -1,9 +1,9 @@
#include <iostream>
#include <iostream> // include API
using namespace std;
int main()
int main() // the main code portion of a C++ program
{
cout << "Hello World" << endl; //print Hello Word on the screen
return 0; // for convention
cout << "Hello World" << endl; //print Hello World on the screen
return 0; // conventional
}