
adder a = \b -> a + b

addtwo = adder 2

myadd = adder 21

main = do
    print (addtwo 40); -- -> 42
    print (myadd 21); -- -> 42
