RosettaCodeData/Task/First-class-functions/E/first-class-functions-2.e
2023-07-01 13:44:08 -04:00

3 lines
50 B
Text

def compose(f, g) {
return fn x { f(g(x)) }
}