A Program

Game Maker 8

A program

A program consists of a set of instructions, called statements. A program must start with the symbol '{' and end with the symbol '}'. Between these symbols there are the statements. Statements must be separated with a ';' symbol. So the global structure of every program is:

{
  <statement>;
  <statement>;
  ...
}

There are a number of different types of statements, which will be discussed below.