The (namespace-require &#39;scheme/base) worked fine.&nbsp; Is there any advantage/disadvantage to using the private namespace as Eli suggested?<br><br><div class="gmail_quote">On Thu, Jul 3, 2008 at 1:19 PM, Eli Barzilay &lt;<a href="mailto:eli@barzilay.org">eli@barzilay.org</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d">On Jul &nbsp;3, Robby Findler wrote:<br>
&gt; This is not a bug.<br>
&gt;<br>
&gt; The top-level namespace (ie the part of the namespace that deals<br>
&gt; with code outside modules) for the module language does not have any<br>
&gt; bindings. You have to initialize it with some if you want to use<br>
&gt; them.<br>
&gt;<br>
&gt; It would be better to avoid eval (as has been mentioned a few times<br>
&gt; on this list) but on the assumption that eval is truely necessary,<br>
&gt; try this:<br>
&gt;<br>
&gt; &nbsp; #lang scheme<br>
&gt; &nbsp; (namespace-require &#39;scheme/base)<br>
&gt; &nbsp; (eval &#39;((lambda (x) x) 1))<br>
&gt;<br>
&gt; Without the second line, the third one won&#39;t work, but with it, it<br>
&gt; does.<br>
<br>
</div>You can also use a private namespace<br>
<br>
 &nbsp;#lang scheme<br>
 &nbsp;(define ns (make-base-namespace))<br>
 &nbsp;(eval &#39;((lambda (x) x) 1) ns)<br>
<br>
or even better, you can use the namespace of the current module:<br>
<br>
 &nbsp;#lang scheme<br>
 &nbsp;(define-namespace-anchor anchor)<br>
 &nbsp;(eval &#39;((lambda (x) x) 1) (namespace-anchor-&gt;namespace anchor))<br>
<br>
and you can even do this now:<br>
<br>
 &nbsp;#lang scheme<br>
 &nbsp;(define-namespace-anchor anchor)<br>
 &nbsp;(define c 1)<br>
 &nbsp;(eval &#39;((lambda (x) x) c) (namespace-anchor-&gt;namespace anchor))<br>
<font color="#888888"><br>
--<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;((lambda (x) (x x)) (lambda (x) (x x))) &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Eli Barzilay:<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.barzilay.org/" target="_blank">http://www.barzilay.org/</a> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Maze is Life!<br>
</font></blockquote></div><br>