'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
Code: Select all
Procedure.l Test()
For x = 1 to 10
if x = 5
procedurereturn x
else
procedurereturn -1
endif
Next x
endprocedure