emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] Org-Babel - Clojure & Lazy Sequences Bug


From: Rick Moynihan
Subject: [Orgmode] Org-Babel - Clojure & Lazy Sequences Bug
Date: Thu, 4 Nov 2010 14:11:39 +0000

I have the following org file:

#+BEGIN_SRC clojure
(range 10)
#+END_SRC

#+results:
: address@hidden

Where as I would expect to see the sequence.  Evaluating the code
inside a doall doesn't seem to do anything either:

#+BEGIN_SRC clojure
(doall (range 10))
#+END_SRC

#+results:
: address@hidden

Is there any parameter I can pass to the block to get the code to
execute in a doall and return the sequence values rather than the
lazy-seq object itself?

R.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]