mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
8 lines
185 B
Scheme
8 lines
185 B
Scheme
(define-library (srfi 111)
|
|
(import (scheme base))
|
|
(export box box? unbox set-box!)
|
|
(begin
|
|
(define-record-type Box
|
|
(box value)
|
|
box?
|
|
(value unbox set-box!))))
|