var add2 = function(x, y) { x + y } var add1 = function(x, f) { f(3,x) } print(add2(3, 4)) print(add1(2, add2))