Event: Game_Start { // 3 different statement structures which are all computable
i = 0; list = [0,1,2]; b = false;
i = 0; list = [0,1,2]; b = false;
i = 0 list = [0,1,2] b = false } }
Description
A statement terminator which separates lines in the code. A statement is a complete instruction to the computer and the semicolon is used to separate instructions.
The engine understands logical line break as a statement terminator, so semicolon is redundant unless you want several statements to go on the same line.