<div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">The essential error is, I think, that you're using the mzscheme<br>
language not the scheme/base language. Use modules for *all* of your<br>
files and start them with<br>
<br>
#lang scheme/base<br>
<br>
rather than<br>
<br>
(module name mzscheme ...<br>
<br>
and get rid of the closing ) as well.<br>
<br>
The keyword issue is an incompatibility between the v3 legacy language<br>
and the v4 language and is documented in the release notes (at least,<br>
it should be...)</blockquote><div><br>Excellent. I'll give that a try. <br><br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Also, you don't need that eval. For a beginner you can't really go<br>
wrong *never* using eval. I'm serious here -- experienced Schemers<br>
very rarely use it, and beginners use it far too much.<font color="#888888"></font></blockquote><div><br>Gotcha. I realized that I was probably missing something, as the eval seemed wrong even to me. I see what I was doing wrong now though. Thanks tremendously for your help.<br>
</div></div><br>