<div><br></div><div>hello.</div><div>thank you for your kindness</div><div>the following code </div><div>(define-runtime-path here ".")</div><div>(define here</div><div> (bitmap</div><div> (path->string (build-path here "run.bmp"))))</div>
<div>doesn't work </div><div>"the error saya module: duplicate definition for identifier in: here"</div><div>so when I change the (define here ~ to (define hero ~</div><div>then another error apear </div><div>
says "initialization in bitmap% (datastring case): expects 3 arguments, given 2: #<void> unknown/mask"</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"><<a href="mailto:noelwelsh@gmail.com">noelwelsh@gmail.com</a>></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, 김태윤 <<a href="mailto:kty1104@gmail.com">kty1104@gmail.com</a>> wrote:<br>
<br>
There is a transcription error. This<br>
<br>
> (define-runtime-path hero ".")<br>
<br>
should be<br>
<br>
(define-runtime-path here ".")<br>
<br>
here, not hero. We are defining a path called "here" that specifies<br>
the path where the code is stored. I.e. here.<br>
<div class="im"><br>
> (define hero<br>
> (bitmap<br>
> (path->string (build-path 'same "run.bmp"))))<br>
<br>
</div>When we build the path to run.bmp we want to use the path "here" we<br>
defined above, so<br>
<div><div></div><div class="h5"><br>
(build-path here "run.bmp")<br>
<br>
HTH,<br>
N.<br>
</div></div></blockquote></div><br>