[Top]
|
Method exit()
- Method
exit
void exit(int returncode, void|string fmt, mixed ... extra)
- Description
Exit the whole Pike program with the given returncode .
Using exit() with any other value than 0 (zero) indicates
that something went wrong during execution. See your system manuals
for more information about return codes.
The arguments after the returncode will be used for a call to
werror to output a message on stderr.
- See also
_exit()
|