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

7 lines
94 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))
(outer)