#include // Includes the library we need for cout using namespace std; // Makes the standard names available for us int main(){ // main will automatically run when we run the program // cout is an object supports the insertion operator // << is the insertion operator. We're inserting "Hello World" into the object // "Hello World" is a string // ; ends a statment. cout << "Hello World\n"; // \n represents a linebreak cout << "Here's another line\n"; return 0; // 0 is a status code that means everything was fine }