Initial file

This commit is contained in:
Justin Ethier 2015-05-20 21:54:00 -04:00
parent 753c2a9b3b
commit 03e37a4ead

9
scheme/eval.sld Normal file
View file

@ -0,0 +1,9 @@
(define-library (scheme eval)
(import
(scheme base)
(scheme read))
(export
eval
)
(include "../eval.scm")
(begin))