<div><br></div><div>hello.</div><div>thank you for your kindness</div><div>the following code </div><div>(define-runtime-path here &quot;.&quot;)</div><div>(define here</div><div> (bitmap</div><div>   (path-&gt;string (build-path here &quot;run.bmp&quot;))))</div>
<div>doesn&#39;t work </div><div>&quot;the error saya module: duplicate definition for identifier in: here&quot;</div><div>so when I change the (define here ~ to (define hero ~</div><div>then another error apear </div><div>
says &quot;initialization in bitmap% (datastring case): expects 3 arguments, given 2: #&lt;void&gt; unknown/mask&quot;</div><div><br></div><div>can I have little bit more specify?</div><div><br></div><div>every time I try to google with keyword scheme, weird result come out so it is hard to find solution</div>
<div><br></div><br><div class="gmail_quote">2010/10/9 Noel Welsh <span dir="ltr">&lt;<a href="mailto:noelwelsh@gmail.com">noelwelsh@gmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
On Sat, Oct 9, 2010 at 2:40 AM, 김태윤 &lt;<a href="mailto:kty1104@gmail.com">kty1104@gmail.com</a>&gt; wrote:<br>
<br>
There is a transcription error. This<br>
<br>
&gt; (define-runtime-path hero &quot;.&quot;)<br>
<br>
should be<br>
<br>
(define-runtime-path here &quot;.&quot;)<br>
<br>
here, not hero. We are defining a path called &quot;here&quot; that specifies<br>
the path where the code is stored. I.e. here.<br>
<div class="im"><br>
&gt; (define hero<br>
&gt;  (bitmap<br>
&gt;    (path-&gt;string (build-path &#39;same &quot;run.bmp&quot;))))<br>
<br>
</div>When we build the path to run.bmp we want to use the path &quot;here&quot; we<br>
defined above, so<br>
<div><div></div><div class="h5"><br>
(build-path here &quot;run.bmp&quot;)<br>
<br>
HTH,<br>
N.<br>
</div></div></blockquote></div><br>