Given this code: ```julia julia> """ procedure andb(a, b); if a=1 and b=1 then 1 else 0; """ |> rcall "andb" ``` How would I be able to "mirror" it into Julia REPL?  (I can use `rcall`, but that seems a bit convoluted)