(define x 2) (define (displayln x) (display x) (newline)) (define (gy y) x) (define (gx x) x) (displayln (gx 7)) (displayln (gy 7))