Examples:
LOOP:
ASK 'Enter non-zero to process another image >> ' TEST
IF TEST=0
RETURN
END_IF
:
:
GOTO LOOP:
(commands)
END
may be executed as a subroutine, but one that looks like:
IF TEST=0
END
END_IF
will not work. Use RETURN instead.