[racket] the program can't find image file

From: Matthew Flatt (mflatt at cs.utah.edu)
Date: Sat Oct 9 09:23:16 EDT 2010

At Sat, 9 Oct 2010 16:28:58 +0900, 김태윤 wrote:
> hello.
> thank you for your kindness
> the following code
> (define-runtime-path here ".")
> (define here
>  (bitmap
>    (path->string (build-path here "run.bmp"))))
> doesn't work

I recommend instead

 (define-runtime-path run-bmp-path "run.bmp")
 (define run-bitmap (bitmap run-bmp-path))



Posted on the users mailing list.