Skip to content
Chris Petersen edited this page Oct 16, 2014 · 1 revision

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))))
Clone this wiki locally