Clean up logic

With only this file having comments, it seems right to normalize it here.
This commit is contained in:
Richie Bendall
2020-03-30 03:31:40 +13:00
committed by GitHub
parent 8313ceeb4a
commit e59047cde5

View File

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