|
|
|
|
|
by mg
1001 days ago
|
|
a = f(e(d(c(b))), 4), 5)
That has 4 opening parenthesis and 5 closing parenthesis. b is passed to c
b ~> c
then the result is passed to d
b ~> c ~> d
then to e along with 4 as a second parameter
b ~> c ~> d,4 ~> e
and finally to f along with 5
b ~> c ~> d,4 ~> e,5 ~> f
|
|