[racket] What #lang to use to create teachpack?

From: Norman Ramsey (nr at cs.tufts.edu)
Date: Mon Nov 4 18:36:19 EST 2013

 > I think you will find "#lang racket" the best language for writing
 > teachpacks.

Using "#lang racket" I have successfully create a package, installed
it, and require'd it.  But when I print a structure defined in my
package, the arguments don't print:

   > (require geo)
   > (length geonames)
   10150
   > (first geonames)
   (make-usgs ...)
   > 

I want my students to see the actual arguments rather than ..., as
they would if I had used `define-struct` in ISL.  Is there a
relatively easy way to achieve this?


Norman

Posted on the users mailing list.