It's your friendly, neighborhood idiot here, with a question
Posted: Mon Jul 07, 2003 6:45 am
Will/should a procedure exit immediately when a
'Procedurereturn' is encountered?
Not mentioned it the doc's.
I am on PB 3.70 w/updates
Example:
HarryO
'Procedurereturn' is encountered?
Not mentioned it the doc's.
I am on PB 3.70 w/updates
Example:
Code: Select all
Procedure.l Test()
For x = 1 to 10
if x = 5
procedurereturn x
else
procedurereturn -1
endif
Next x
endprocedure