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 (isexist("/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 (isexist("/tmp/foo")) {
exit(0)
}
exit(1)