built in statements: if


if:
    description:
        if( condition ):
            statements ...
        end:

        if condition evaluates to |yes> then compile and run the given statements

    examples:
    see also:
        if-else, test-if.sw3

Home