mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
9 lines
241 B
Scheme
9 lines
241 B
Scheme
(define-library (scheme read)
|
|
(import (scheme base))
|
|
(export
|
|
;read ;; what about issues with read/cyc-read in csi???
|
|
cyc-read ;; try this first, but it needs to go away!!!
|
|
read-all
|
|
)
|
|
(include "../parser.scm")
|
|
(begin))
|