[plt-scheme] DrScheme Interactions window

From: Daniel Silva (daniel.silva at gmail.com)
Date: Tue May 11 21:45:37 EDT 2004

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


Posted on the users mailing list.