12345678910111213141516171819202122 |
- (define-library (srfi 35)
- (export
- make-condition-type
- condition-type?
- make-condition
- condition?
- condition-has-type?
- condition-ref
- make-compound-condition
- extract-condition
- define-condition-type
- condition
- &condition
- &message
- &serious
- &error
- )
- (import
- (scheme base)
- (srfi 1))
- (include "35.upstream.scm"))
|