QUITS A FUNCTION WITHOUT EXECUTING END_FNC
ACTION
The command EXIT_FNC quits a function whithout executing END_FNC
SYNTAX:
EXIT_FNC
USE ERROR EXAMPLE
dim i%
for i%=1 to 10
print double(i%)
next i%
end
fnc double(j%)
if j%>5 then result 0:exit_fnc
result 2*j%
end_fnc
EXIT_FNC
EXIT_FNC
SEE ALSO
FNC
END_FNC
RESULT