Syntax
exit(integer)
Description
The exit statement causes the MSL program to immediately end and return control to the process that called it.
Example
if (exists("/tmp/foo")) { exit(0) } exit(1)
exit(integer)
The exit statement causes the MSL program to immediately end and return control to the process that called it.
if (exists("/tmp/foo")) { exit(0) } exit(1)