Go to the first, previous, next, last section, table of contents.

Conditional Loading

You can control which forms in a module are actually evaluated by using conditional loading.

Form: if test-form sym

Form: else sym

Form: end-if sym

If test-form evaluates to true, then all subsequent forms, up until the matching else or end-if, will be evaluated. If false, then the forms will be read but not evaluated. All forms inside the conditional must be syntactically correct.


Go to the first, previous, next, last section, table of contents.