Dear Experts,

I am confused about how to use lob and call in org-babel. First I
define a simple function like square:
#+srcname: square(x)
#+begin_src python
return x*x
#+end_src

A line like
: #+lob: square(x=2)
does not seem to produce any result either in the buffer or on export:
#+lob: square(x=2)

The same seems to happen with call:
: #+call: square(x=2)
#+call: square(x=2)

Instead, to get things to work I need to do something like:
: | 4 |
: #+TBLFM: @1$1='(sbe "square" (x 2))
to get:
| 4 |
#+TBLFM: @1$1='(sbe "square" (x 2))

Thanks,
-I.S.