lib-colon1.scm 332 B

1234567891011121314151617
  1. (define-library (test colon)
  2. (export okay:another)
  3. ;; Specifically don't include quote/quasiquote
  4. (import (only (scheme base) define))
  5. (begin
  6. (define (okay:another) 8)))
  7. (import (test colon))
  8. (define (okay:something) 7)
  9. (display (okay:something))
  10. (newline)
  11. ;; Output: 7
  12. (display (okay:another))
  13. (newline)
  14. ;; Output: 8