Hi, On 29 Sep., 15:33, "K." <[email protected]> wrote:
> For instance (pr-str '(+ 1 2)) returns "(+ 1 2)", which can not be > read back since (eval (read-string (pr-str '(+ 1 2)))) returns 3! Here is your misunderstanding. Reading ends at read-string. When you look at the result you will find a list with the symbol + and the two numbers 1 and 2. eval is evaluation and a complete separate issue. Sincerely Meikel -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
