RosettaCodeData/Task/Integer-sequence/SuperCollider/integer-sequence.supercollider
2016-12-05 22:15:40 +01:00

3 lines
189 B
Text

i = Routine { inf.do { |i| i.yield } }; // return all integers, represented by a 64 bit signed float.
j = { inf.do { i.next.postln; 0.01.wait } }; // this prints them incrementally
j.play;