=LET(partial, CURRY(SUM, 1), partial(2)) -> 3
DEFINE(
CURRY,
LAMBDA(
function,
argument1,
LAMBDA(
argument2,
function(
argument1,
argument2))))
Help us optimize this function