I'm having trouble following the example page on babel and clojure ( http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-clojure.html ). I believe I've done everything correctly, the first example works: #+begin_src clojure :results silent (+ 1 4) #+end_src but the next two. . . #+begin_src clojure :results value [ 1 2 3 4] #+end_src #+begin_src clojure :results value (def small-map {:a 2 :b 4 :c 8}) (:b small-map) #+end_src . . . bomb, causing slime/swank-looking error buffer: Package { does not exist. Line: 1, Column: 17, File-Position: 17 Stream: # [Condition of type SB-INT:SIMPLE-READER-PACKAGE-ERROR] Restarts: 0: [RETRY] Retry SLIME evaluation request. 1: [*ABORT] Return to SLIME's top level. 2: [ABORT] Abort thread (#) I've got the nREPL 0.1.8-preview running. LB