The BAS code
Call foo(bar)
is translated to
Call(foo(bar))
instead of
foo(bar)
Even changing the basic code to:
yields in the Python foo(bar)().
Log in to post a comment.