(exit)
(exit status)
This procedure exits the Inlab Scheme interpreter. If no exit status is provided, an exit status of 0 is passed back to the invoking shell (otherwise the supplied exit status is returned).
The interpreter terminates.
This procedure never returns.
$ scheme
> (exit)
$ echo $?
0
$ scheme
> (exit 2)
$ echo $?
2