[racket] evaluate string which contains many definitions

From: Noel Welsh (noelwelsh at gmail.com)
Date: Wed Nov 17 10:43:00 EST 2010

On Wed, Nov 17, 2010 at 11:45 AM, 김태윤 <kty1104 at gmail.com> wrote:
> (eval (read (open-input-string content)) ns)

This only reads and evals the first s-expression from content. Try
this and you'll see:

  (read (open-input-string content))

N.


Posted on the users mailing list.