IF
ELSE
ENDC


These three commands is used to conditionally assemble parts of your file. It is a powerful feature commonly used in macros.

IF   2+2==4
PRINTT    "2+2==4\n"
ELSE
PRINTT    "2+2!=4\n"
ENDC

The ELSE block is optional. IF/ELSE/ENDC-blocks can be nested.

See also:



Last updated 21 June 1997 by Carsten Sorensen