[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] Babel Clojure example problems
From: |
Thorsten Jolitz |
Subject: |
Re: [O] Babel Clojure example problems |
Date: |
Thu, 05 Jun 2014 11:53:33 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) |
Lawrence Bottorff <address@hidden> writes:
> 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:
all 3 blocks work fine for me
#+begin_src clojure :results silent
(+ 1 4)
#+end_src
#+begin_src clojure :results value
[ 1 2 3 4]
#+end_src
#+results:
| 1 | 2 | 3 | 4 |
#+begin_src clojure :results value
(def small-map {:a 2 :b 4 :c 8})
(:b small-map)
#+end_src
#+results:
: 4
PS
#+begin_src emacs-lisp
(emacs-version)
#+end_src
#+results:
: GNU Emacs 24.3.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.10.7)
: of 2014-01-28 on var-lib-archbuild-extra-x86_64-juergen
#+begin_src emacs-lisp
(call-interactively 'org-version)
#+end_src
#+results:
: Org-mode version 8.2.6 (release_8.2.6-1123-g024a05 @
: /usr/share/emacs/24.3/lisp/org/lisp/)
--
cheers,
Thorsten