Re: [O] Bug: cached code blocks should return the same value [8.3.1]

2015-10-30 Thread Aaron Ecay
Hi Benda, 2015ko irailak 18an, Benda Xu-ek idatzi zuen: [...] > However, this feature does not work with cache. In case that "input" > code block takes a long time to evaluate, it is a good idea to cache the > result. But that returns "nil" in subsequent function calls: > >#+name: input

[O] Bug: cached code blocks should return the same value [8.3.1]

2015-09-18 Thread Benda Xu
Hi All, Passing values across code blocks makes Org babel a powerful meta programming language: #+name: input #+BEGIN_SRC sh :results output echo "3" #+END_SRC #+BEGIN_SRC R :var a=input() a #+END_SRC #+RESULTS: | 3 | | | However, this feature does not work