From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim Cross Subject: Re: ob-clojure will error result when contains comment Date: Thu, 13 Jul 2017 18:48:10 +1000 Message-ID: <87eftklo39.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36761) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dVZng-0007oD-Sn for emacs-orgmode@gnu.org; Thu, 13 Jul 2017 04:48:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dVZnf-0004YJ-4n for emacs-orgmode@gnu.org; Thu, 13 Jul 2017 04:48:44 -0400 Received: from mail-pf0-x233.google.com ([2607:f8b0:400e:c00::233]:34902) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dVZne-0004JA-U3 for emacs-orgmode@gnu.org; Thu, 13 Jul 2017 04:48:43 -0400 Received: by mail-pf0-x233.google.com with SMTP id c73so26221222pfk.2 for ; Thu, 13 Jul 2017 01:48:20 -0700 (PDT) In-reply-to: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: "numbchild@gmail.com" Cc: Org-mode I think there is something wrong with your environment and your second block is not legal code. If you run your second block directly in a clojure repl, you will get the same errors, which means it isn't an org issue. Executing your examples with org from master branch I get #+BEGIN_SRC clojure (+ 1 1) ;=> 2 #+END_SRC #+RESULTS: : 2 #+BEGIN_SRC clojure :results value (def sum1 #(reduce + %)) (def avg1 #(/ (sum %) (count %))) (defn stats [numbers] (map #(% numbers) [sum1 count avg1])) (stats [3 4 10]) (stats [80 1 44 13 6]) #+END_SRC #+RESULTS: : #'user/sum1#'user/statsclass clojure.lang.Compiler$CompilerExceptionclass java.lang.IllegalStateExceptionclass java.lang.IllegalStateExceptionclass clojure.lang.Compiler$CompilerExceptionclass java.lang.IllegalStateExceptionclass java.lang.IllegalStateExceptionCompilerException java.lang.RuntimeException: Unable to resolve symbol: sum in this context, compiling:(/tmp/form-init6637865895670060372.clj:2:15) : IllegalStateException Attempting to call unbound fn: #'user/avg1 clojure.lang.Var$Unbound.throwArity (Var.java:43) : IllegalStateException Attempting to call unbound fn: #'user/avg1 clojure.lang.Var$Unbound.throwArity (Var.java:43) I'm not sure why the version of ob-clojure.el is not yet in the org or org-plus-contrib packages - Does master only become maint after major version releases? Note also, there appears to be an issue with most recent versions of cider when you do cider-jack-in and your not inside a project. The issues seem to relate mainly to clj-refactor, but there could be other problems. Again, highly recommend running your cider inside a clojure project. Tim numbchild@gmail.com writes: > Here is the examples: > > #+BEGIN_SRC clojure > (+ 1 1) ;=> 2 > #+END_SRC > > #+RESULTS: > : class clojure.lang.LispReader$ReaderExceptionclass > java.lang.RuntimeExceptionRuntimeException EOF while reading, starting at > line 1 clojure.lang.Util.runtimeException (Util.java:221) > > #+BEGIN_SRC clojure :results value > (def sum1 #(reduce + %)) > (def avg1 #(/ (sum %) (count %))) > > (defn stats > [numbers] > (map #(% numbers) [sum1 count avg1])) > > (stats [3 4 10]) > ;; => (17 3 17/3) > > (stats [80 1 44 13 6]) > ;; => (144 5 144/5) > #+END_SRC > > #+RESULTS: > : class clojure.lang.LispReader$ReaderExceptionclass > java.lang.RuntimeExceptionRuntimeException EOF while reading, starting at > line 1 clojure.lang.Util.runtimeException (Util.java:221) > > > [stardiviner] GPG key ID: 47C32433 > IRC(freeenode): stardiviner Twitter: @numbchild > Key fingerprint = 9BAA 92BC CDDD B9EF 3B36 CB99 B8C4 B8E5 47C3 2433 > Blog: http://stardiviner.github.io/ -- Tim Cross