"Thomas S. Dye" writes:
> Hi Eric,
>
> The :noweb argument works for me with python, but not with R.
[...]
> This throws an error in the 2nd block "funcall: Symbol's function definition
> is void: R-mode":
Hi Tom,
The problem here is that `R-mode' is not available on your system,
installing
Hi Eric,
The :noweb argument works for me with python, but not with R.
This works fine:
#+srcname: noweb-example
#+begin_src python
a = 28
a
#+end_src
#+resname: noweb-example
: 28
#+begin_src python :noweb
# <>
a + 4
#+end_src
#+resname:
: 32
This throws an error in the 2nd block "f