[racket] Need a namespace

From: Noel Welsh (noelwelsh at gmail.com)
Date: Thu Jun 24 11:27:35 EDT 2010

You're using a define in a place where you aren't allowed to put a
define. E.g., this will work:

(define foo 1)

This won't work:

(define bar (define foo 1) foo)

N.


Posted on the users mailing list.