NXSL:exit

Revision as of 18:30, 22 October 2014 by Victor (talk | contribs)

Exit from script. This function never returns.


Syntax

exit(code);


Parameters

code Exit code (optional, 0 will be used by default).


Return Value

None.


Examples

 exit();    // exit with code 0
 exit(42);  // exit with code 42