Merge pull request #440 from TheMrIron2/patch-1

Annotated (C++) better for beginners, fixed typo
This commit is contained in:
Mike Donaghy
2017-12-11 10:35:49 -06:00
committed by GitHub

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
}