IF THEN
This command will allow your program to perform a sequences of commands based on the result of a condition. If the condition is true, the commands after the THEN keyword are performed. Ensure that your commands after the THEN keyword are separated by a colon(:). If the condition is false, the rest of the line is skipped.
SYNTAX
IF Condition THEN Command Go Here for condition True
RELATED INFO
Basic Commands
Glossary
EXAMPLE
IF THEN Commands