handball/src/test/run-pass/closure/nested-assign.scm

9 lines
91 B
Scheme
Raw Normal View History

2021-12-29 02:09:51 +00:00
(define (outer)
(define x 0)
(define (y)
(set! x 1))
(y)
(display x))
2021-12-29 02:09:51 +00:00
(outer)