RosettaCodeData/Task/Higher-order-functions/SuperCollider/higher-order-functions.sc
2023-07-01 13:44:08 -04:00

2 lines
124 B
Scala
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

f = { |x, y| x.(y) }; // a function that takes a function and calls it with an argument
f.({ |x| x + 1 }, 5); // returns 5