mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-20 06:09:17 +02:00
9 lines
138 B
Scheme
9 lines
138 B
Scheme
(define-library (scheme eval)
|
|
(import
|
|
(scheme base)
|
|
(scheme read))
|
|
(export
|
|
eval
|
|
)
|
|
(include "../eval.scm")
|
|
(begin))
|