User Tools

Site Tools


ixe:irpl:flow_control:return

Index
Flow Control

return

return

Description

Stops execution of a function call and returns immediately. If called from some place other than a function, it will stop the script execution and ‘return’ immediately. Useful for aborting function execution or script execution when necessary.

Examples

trace(42)
@MyFunc
trace (43)
 
:MyFunc
    trace("1")
    return
    trace("2")
ixe/irpl/flow_control/return.txt · Last modified: 2025/01/07 15:41 by 127.0.0.1