Where to put libraries?
- Where to put libraries?
- Inlining library clauses (e.g. Gauche)
- Libraries as files (e.g. Chibi Scheme)
- Stak Scheme took the inlining solution.
(define-library (foo)
(export foo)
(import (scheme base))
(begin
(define (foo x)
(write-u8 x))))
(import (foo))
(foo 65)