Consider the following snippet of perl in org-babel, which uses <STDIN>
.
** Ans 2
#+begin_src perl :results output
use Math::Trig;
$rad = <STDIN>;
$circumference = 2*pi*$rad;
print "Circumference of circle is $circumference";
#+end_src
Is it possible to pipe the input to this block from another block ?
Say :
#+begin_src text :name test-input
12.5
#+end_src