IF

 ──IF─expression─┬─┬THEN─┬─┬instruction─┬────────────────────┬───
                   └;┘     └;┘            └─ELSE─┬─┬instruction┘

                                                 └;┘

IF is used to conditionally process an instruction or group of instructions depending on the evaluation of the expression. The expression must evaluate to 0 or 1.

The instruction after the THEN is processed only if the result of the evaluation is 1. If you specify an ELSE clause, the instruction after ELSE is processed only if the result of the evaluation is 0.

Example:

if answer='YES' then say 'OK!'
                else say 'Why not?'

Remember that if the ELSE clause is on the same line as the last clause of the THEN part, you need a semicolon to terminate that clause.

Example:

if answer='YES' then say 'OK!';  else say 'Why not?'

The ELSE binds to the nearest IF at the same level. The NOP instruction can be used to eliminate errors and possible confusion when IF constructs are nested, as in the following example.

Example:

If answer = 'YES' Then
   If name = 'FRED' Then
      say 'OK, Fred.'
   Else
      nop
Else
   say 'Why not?'

Notes:


[Back: EXIT]
[Next: INTERPRET]