IF
Enables conditional execution of commands. Syntax IF expression1 commands1 [ ELSEIF expression2 commands2] [ELSE commands3] ENDIF Parameters expression1 and expression2 Logic expressions (using conditional or Boolean operators). commands1 Commands to be executed if expression1 is logically true. Execution then resumes at the first command following ENDIF. commands2 Commands to be executed if expression1 is false…
Read more