// this is a single line comment
/* this
is
a
multi-line comment */
#include // header file needed to print
using namespace std; // instead of having to write std::cout
// the main function is where the program begins execution
int main()
{
// print Hello world. and a new line
cout << "Hello world." << endl;
// end the program
return 0;
}