python from toolz import curry, compose @curry def add(x, y): return x + y composed_func = compose(add(5), add(3)) result = composed_func(2)