chibi-scheme/lib/scheme/eval.sld
Alex Shinn dddc6d1806 Changing scribble notation to use TeX-style \ instead of @.
Documentation looks much nicer now (or at least more familiar).
Test cases become ugly because we need to double the escape in
strings.  Also escaping requires \"\\" which in a Scheme string
gets written \\"\\\\".  Consider \\ as a shortcut (which is still
\\\\ in a string).
2013-07-14 12:52:28 +09:00

4 lines
113 B
Scheme

(define-library (scheme eval)
(import (chibi) (meta)) ; (chibi compiler analyze)
(export eval environment))