programming

projects 
« Back to blog

Lambdas via Python

def adder(x):    return lambda y: x + y add5 = adder(5)add5(1)6

Posted by Anthony