Expression Statements

You can turn any expression into a statement by terminating the expression with a semicolon.

For example:
setOpcode(input, 3);
Since assignments are expressions, assignments can be turned into statements in the same way. For instance, the following statement assigns a string to a variable "address":
address := '550 Broad Street';