IFIF
Purpose: Logic statement for decision making.
Format: IF x THEN clause [ELSE clause]
Description: x is any expression
clause is a BASIC statement or sequence of statements (separated by commas) or a line number to branch to
If x is true (non zero), the clause following the THEN is executed. If x is false (zero), the clause after the ELSE is executed.
|