What does our preprocessor directive do?
This is an instruction to the compiler and tells this compiler how to run the code
Why do we have a main function? What does it’s return statement do?
The main function is where the code is stored and processed - without it, we cannot run the code. The return statement is to show the end of the program - the program has been run successfully
Explain our expression and declaration statement that we have written so far, to summarise what our program is doing.
Expression statements are used to provide visual information to the player (e.g. text, spaces/end lines, etc.) Whereas the declaration statements contain code and information which the expression statements can use to present to the viewer/player.