Last change
on this file since 39165 was
38548,
checked in by Kon Lovett, 11 months ago
|
module box must export srfi-111 bindings, use secondary module (box-core) to hide `box' symbol (record tag nonsense)
|
File size:
205 bytes
|
Line | |
---|
1 | ;;;; box.scm -*- Scheme -*- |
---|
2 | ;;;; Kon Lovett, Apr '20 |
---|
3 | |
---|
4 | (module box () |
---|
5 | |
---|
6 | (import scheme) |
---|
7 | (import (chicken module)) |
---|
8 | |
---|
9 | (import box-core) |
---|
10 | (reexport box-core) |
---|
11 | (import srfi-111) |
---|
12 | (reexport srfi-111) |
---|
13 | |
---|
14 | ) ;module box |
---|
Note: See
TracBrowser
for help on using the repository browser.