11 lines
190 B
Text
11 lines
190 B
Text
|
|
/*
|
||
|
|
Program termination, in Neko
|
||
|
|
*/
|
||
|
|
|
||
|
|
var sys_exit = $loader.loadprim("std@sys_exit", 1)
|
||
|
|
|
||
|
|
var return_code = 42
|
||
|
|
if true sys_exit(return_code)
|
||
|
|
|
||
|
|
$print("Control flow does not make it this far")
|