RosettaCodeData/Task/Nested-function/SuperCollider/nested-function.sc
2023-07-01 13:44:08 -04:00

12 lines
208 B
Scala

(
f = { |separator|
var count = 0;
var counting = { |name|
count = count + 1;
count.asString ++ separator + name ++ "\n"
};
counting.("first") + counting.("second") + counting.("third")
};
)
f.(".")