add srfi 111
This commit is contained in:
parent
2758c55e3e
commit
690bdcb83d
|
@ -8,4 +8,5 @@ list(APPEND PICLIB_SCHEME_LIBS
|
|||
${PROJECT_SOURCE_DIR}/piclib/srfi/43.scm
|
||||
${PROJECT_SOURCE_DIR}/piclib/srfi/60.scm
|
||||
${PROJECT_SOURCE_DIR}/piclib/srfi/95.scm
|
||||
${PROJECT_SOURCE_DIR}/piclib/srfi/111.scm
|
||||
)
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
(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!))
|
Loading…
Reference in New Issue