Here is our first program:
#include <iostream>
// This is a single comment about our main function.
// Our function prints text to the console.
int main() {
std::cout << "Hello, World" << std::endl;
return 0;
}
Choose which words you think are reserved (keywords):