4 lines
55 B
Text
4 lines
55 B
Text
|
|
def compose(f, g) {
|
||
|
|
return fn x { return f(g(x)) }
|
||
|
|
}
|