7 lines
110 B
Text
7 lines
110 B
Text
Composition := function(f, g)
|
|
return x -> f(g(x));
|
|
end;
|
|
|
|
h := Composition(x -> x+1, x -> x*x);
|
|
h(5);
|
|
# 26
|