Open GoogleCodeExporter opened 9 years ago
now i can def a var and access it a few times before it disappears and it seems
to
mix in previous definitions of the same symbol. In this case I had prevuisly
defined
foo.
Interpreter exception: com.google.lotrepls.shared.InterpreterException:
java.lang.Exception: Unable to resolve symbol: foo in this context
(NO_SOURCE_FILE:0)
Clojure >>> (def foo {:a 1 :b 2})
#'clojure.core/foo
Clojure >>> foo
{:c 4, :a 2}
Clojure >>> foo
{:b 2, :a 1}
Clojure >>> foo
{:c 4, :a 2}
Clojure >>> foo
Interpreter exception: com.google.lotrepls.shared.InterpreterException:
java.lang.Exception: Unable to resolve symbol: foo in this context
(NO_SOURCE_FILE:0)
Clojure >>>
Original comment by arthur.u...@gmail.com
on 16 Jun 2009 at 9:21
Original issue reported on code.google.com by
arthur.u...@gmail.com
on 14 May 2009 at 11:25