Command Reference : Programming Language Reference
  
 
return
Exit subroutine.
The return statement forces an exit from a subroutine within a program. A common use of return is to exit from the subroutine if an unanticipated error has occurred.
Syntax
if [condition] then
return
endif
Cross-references
See “Subroutines”. See also exitloop, stop.