From: Doug Orleans (dougorleans at gmail.com) Date: Tue Jan 24 19:45:44 EST 2006 |
|
Jepri writes: > Needed: A plt-beginners mailing list where beginners like me can ask > silly questions like "How do I eval a string?" (1) This list can be a > tad intimidating. > > 1. (eval (read (open-input-string a-string))) Or you could do this: (require (lib "string.ss")) (eval-string a-string) http://download.plt-scheme.org/doc/301/html/mzlib/mzlib-Z-H-42.html --dougorleans at gmail.com
Posted on the users mailing list. |
|