RosettaCodeData/Task/First-class-functions/E/first-class-functions-2.e
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

3 lines
50 B
Text

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