By the time you evaluated *2, the second most recent result was what it showed you. All top level evaluations count.
In short, you were Heisenberged. --Steve On Jan 14, 2009, at 3:59 AM, HB <hubaghd...@gmail.com> wrote: > > Hey, > I'm trying to run my first Clojure example > > user=> (defn hello [name] (str "Cool! " name)) > #'user/hello > user=> (hello "Google") > "Cool! Google" > user=> (hello "Wicket") > "Cool! Wicket" > user=> (str *1) > "Cool! Wicket" > user=> (str *2) > "Cool! Wicket" > > Isn't (str *2) supposed to return "Cool! Google" ? > Environment: > Clojure20081217 > Ubuntu 8.04 > > Thanks. > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---