ENDS A FUNCTION
ACTION
The command END_FNC ends a function.
SYNTAX:
END_FNC
USE ERROR EXAMPLE
dim i%
for i%=1 to 10
print double(i%)
next i%
end
fnc double(j%)
result 2*j%
end_fnc
END_FNC
END_FNC
SEE ALSO
FNC
RESULT
EXIT_FNC