handball/src/test/run-pass/closure/scope.scm

14 lines
143 B
Scheme
Raw Normal View History

2021-12-29 02:09:51 +00:00
(define x 2)
(define (displayln x)
(display x)
(newline))
2021-12-29 02:09:51 +00:00
(define (gy y)
x)
(define (gx x)
x)
2021-12-29 02:09:51 +00:00
(displayln (gx 7))
(displayln (gy 7))