picrin/piclib/srfi/111.scm

9 lines
194 B
Scheme
Raw Normal View History

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