RosettaCodeData/Task/Function-composition/SuperCollider/function-composition.supercollider

5 lines
72 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
f = { |x| x + 1 };
g = { |x| x * 2 };
h = g <> f;
h.(8); // returns 18