Am 27.03.2013 13:43, schrieb Eric Schulte:
"org-R" is the name of the session. The code blocks illustrate that the
value of x (set in the first code block) is preserved and can be used
in the second (and subsequent) code blocks.
Nick
Okay, so the :session argument must not be repeated?
No one has said or implied that.
Looks for me as this code from your example runs in session mode without
explicit :session argument given:
#+begin_src R
x <- 1
x
#+end_src
#+RESULTS:
: 1
#+begin_src R
x
#+end_src
#+RESULTS:
: 1
[ ... ]