[plt-scheme] DrScheme Interactions window
On Tue, 11 May 2004 18:43:51 -0700, Connor Ferguson
<psfreak at linkline.com> wrote:
> I am still having trouble creating the executable. I have set the language
> to (module...) and have this at the top of my document:
>
> (module spanish mzscheme)
> (require (lib "plt-pretty-big.ss" "lang") (lib "gui.ss" "htdp"))
I think you meant to write:
(module spanish mzscheme
(require (lib "plt-pretty-big.ss" "lang") (lib "gui.ss" "htdp")))
or
(module spanish (lib "plt-pretty-big.ss" "lang")
(lib "gui.ss" "htdp")))
Daniel