(define a 10)

(define (test)
  (display a))

(let ((a 1))
  (test))
