I want to load an image and animate it in Racket. I can do it easily in the Dr. Racket, but I am using Emacs with Geiser. To load the image I need to:
(require racket/draw)
Next, to draw this image onto the screen, I'm planning to use the big-bang module. To load this module I have to:
(require 2thdp/image)
But I get this error:
module: identifier already imported from: 2htdp/image
at: make-pen
in: racket/draw
errortrace...:
This basically means that I can't import the same module twice. But I need both these libraries. How do I avoid this problem?