;;;; box.scm -*- Scheme -*- ;;;; Kon Lovett, Apr '20 (module box () (import scheme (chicken module) box-core) (reexport box-core (rename box-core (make-box-mutable box) (make-box-immutable immutable-box) (box-ref unbox) (box-set! set-box!))) ) ;module box