IF |
Top Previous Next |
IF statements are used for conditional execution of code in VPL programs.
IF <expr> THEN
<expr> is an expression that evaluates to a BOOL, and it is therefore always either TRUE or FALSE. Based on the <expr>, the code after the THEN keyword is either executed or bypassed.
Example: INCLUDE rtcu.inc |