Statements and Expressions
A statement refers to a complete programming instruction such as:
Each of these statements compile, providing the referenced variables are defined.
Expressions, on the other hand, are sub-components of statements.
The following expressions are used in the above example:
Expressions will not compile outside the context of a statement.
Note
It is strongly recommended that each statement appear on a separate line. The compiler cannot enforce this since full backward compatibility with the previous Axcess language must be maintained. It is also strongly recommended that semicolons be used to terminate each statement (as in the C language).