Mwnci exit() Function

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)