cfunction
src/core/os.c on line 256 , column 1
(os/exit &opt x force )
Exit from janet with an exit code equal to x. If x is not an
integer , the exit with status equal the hash of x. If `force` is
truthy will exit immediately and skip cleanup code.
$ janet -e '(os/exit 42 )' ; echo $?
42