# exit instead of returning from a function # Output: # #empty# # Exit: # 42 # Program: begin char f() is exit 42 end char c = call f() ; println c ; exit 0 end