terminate - part-cw/lambdanative GitHub Wiki
(terminate)
terminate tell the main program loop to exit nicely
Example
Example 1: This is used in nearly all program's main keyboard handler to terminate on the escape key. E.g. see DemoHelloWorld/main.scm
(if (= t EVENT_KEYPRESS) (begin
(if (= x EVENT_KEYESCAPE) (terminate))))