RETURN VALUE OF FUNCTION
ACTION
The command RESULT defines the return value of function
SYNTAX:
RESULT V
USE ERROR EXAMPLE
dim i%
for i%=1 to 10
print double(i%)
next i%
end
fnc double(j%)
result 2*j%
end_fnc
RESULT
RESULT V
SEE ALSO
FNC
END_FNC
EXIT_FNC