chibi-scheme/tests/basic/test05-internal-define.scm
Alex Shinn 44a6c530d9 EVAL save/restores the current exception handler.
It doesn't really make sense for an exception to pass
outside of EVAL.  Fixes issue .
2009-12-28 23:18:04 +09:00

8 lines
92 B
Scheme

(let ((a 1000))
(define b (+ a 3))
(write a)
(display " ")
(write b)
(newline))