Suppose I try to use an undefined variable in MIT Scheme's REPL:
1 ]=> blablabla
;Unbound variable: blablabla
;To continue, call RESTART with an option number:
; (RESTART 3) => Specify a value to use instead of blablabla.
; (RESTART 2) => Define blablabla to a given value.
; (RESTART 1) => Return to read-eval-print level 1.
2 error>
This automatically brings me into the debugger. To exit the debugger, I have to type (restart 1)
. Is there an alternative way that does not involve typing 11 characters just to exit the debugger? It's a bit silly that all three options involve typing 11 characters.
rlwrap mit-scheme
). rlwrap somehow causes the second ctrl-c to be ignored. – Methane