seeds_and_ledgers/supercollider/morph_quickproto.scd

14 lines
183 B
Plaintext
Raw Normal View History

(
20.do({
var sus, rep;
rep = rrand(1, 2);
sus = 0;
rep.do({
([[sus], [0, 1, 2, 3].removeEvery([sus]).scramble, []].asString + ",").postln
})
})
)
[1, 2, 3].removeEvery([1])