if-else:
    description:
        if( condition ):
            if-statements ...
        else:
            else-statements ...
        end:
        if condition evaluates to |yes> then compile and run the given if-statements
        otherwise, run the given else-statements
    examples:
    see also:
        if, test-if.sw3
Home