foo(bar(baz(42)))
foo bar baz 42
Now, let's make two of the functions into object members:
A.foo(bar(B.baz(42)))
A foo bar B baz 42
Now, let's make two of the functions into object members:
Remove the parens, extracting the methods from their objects, instead feeding each object as a left argument to its former member function: This is normal APL-style call syntax; right-to-left if you want.