我目前正在开发一个使用图片的程序,需要添加this question中提到的模块
(require 2htdp/image)
我提出了错误
I see a require of the module 2htdp/image,
but I don't yet know what this module is.
我该如何解决这个问题?我不知道如何让WeScheme了解模块是什么。
提前致谢。
答案 0 :(得分:3)
2htdp/image
是Racket附带的如何设计程序教学包的一部分,如果您需要,您应该使用Racket作为您的Scheme解释器。
答案 1 :(得分:2)
从错误消息中,您似乎打算写2htdp/image
,但您写了htdp2/image
。请注意2
的不同位置。