picrin/contrib/40.srfi/srfi/111.scm

11 lines
181 B
Scheme
Raw Normal View History

2014-07-17 03:43:25 -04:00
(define-library (srfi 111)
(import (scheme base))
2014-08-05 22:33:07 -04:00
(define-record-type <box>
(box value)
box?
(value unbox set-box!))
2014-07-17 03:43:25 -04:00
(export box box?
unbox set-box!))