Charles,
When you get an error like this, it usually means the corresponding
macro (in this case, "import") was not loaded; hence, "utf8" was
evaluated as a variable instead of a symbol. In other words, the
documentation assumes you have the syntax-case egg already loaded.
Try this:
#;1> (require-extension utf8 syntax-case)
#;2> (import utf8)
Alternatively, use the -R option to csi to bring in the egg:
$ csi -R syntax-case
#;1> (use utf8)
#;2> (import utf8)
On 1/4/07, Charles Breathe <[EMAIL PROTECTED]> wrote:
I'm having trouble using the utf8 egg. I must be missing something very
basic. Following the exact instructions in the egg's documentation I get the
following:
$ csi -q
csi> (require-extension utf8)
csi> (import utf8)
Error: unbound variable: utf8
Call history:
<eval> (import utf8) <--
csi>
_______________________________________________
Chicken-users mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/chicken-users