Merge pull request #440 from TheMrIron2/patch-1
Annotated (C++) better for beginners, fixed typo
This commit is contained in:
@@ -1,9 +1,9 @@
|
|||||||
#include <iostream>
|
#include <iostream> // include API
|
||||||
|
|
||||||
using namespace std;
|
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
|
cout << "Hello World" << endl; //print Hello World on the screen
|
||||||
return 0; // for convention
|
return 0; // conventional
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user