35.sld 360 B

12345678910111213141516171819202122
  1. (define-library (srfi 35)
  2. (export
  3. make-condition-type
  4. condition-type?
  5. make-condition
  6. condition?
  7. condition-has-type?
  8. condition-ref
  9. make-compound-condition
  10. extract-condition
  11. define-condition-type
  12. condition
  13. &condition
  14. &message
  15. &serious
  16. &error
  17. )
  18. (import
  19. (scheme base)
  20. (srfi 1))
  21. (include "35.upstream.scm"))