abort [function]
abort([ contexts... ])
Stops execution and returns to C code as soon as possible.
- If no contexts are specified, current context is aborted, otherwise only the specified contexts are aborted.
- This function is equivalent to using sgs_Abort in the C API.
abort(); print( 5 ); // this line is not reached