2017-12-07 21:24:00 +00:00

10 lines
214 B
C++

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