10.1.1 IF Modifier
The IF modifier tests a conditional expression. If the condi-
tional expression is true, BASIC executes the statement. If
it is false, BASIC does not execute the modified statement
but continues execution at the next program statement. The
following is an example of a statement using the IF modifier:
PRINT A IF (A < 5)