|
No, of course, I mean in the actual task (double recursion) I would want something like this
function f(...)
(...)
return f(...), f(...)
end
Which is not possible. I end up using appending tables etc. (Of course it's possible to remove the double recursion, or even recursion completely, but that's beside the point.)