mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
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).
4 lines
113 B
Scheme
4 lines
113 B
Scheme
|
|
(define-library (scheme eval)
|
|
(import (chibi) (meta)) ; (chibi compiler analyze)
|
|
(export eval environment))
|