sva36413.scm 190 B

12345678910111213
  1. (module-export foo)
  2. (define (foo) #f)
  3. (define (bar x)
  4. (let ((y '()))
  5. (set! y x)
  6. y))
  7. (format #t "Ok.~%")
  8. ;; Diagnostic: sva36413.scm:5:10: warning - no use of bar
  9. ;; Output: Ok.