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

9 lines
134 B
Scheme
Raw Normal View History

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