*** empty log message ***
[chuck-blob.git] / exile / threadmem.ck
blobd5cf5cd37ceaede5935e61a9a0efc8a7024fecc1
2 PercFlut w => dac;
3 0.8 => w.gain;
5 fun void play() { 
6         while ( true ) { 
7                 std.mtof ( (float)std.rand2( 60, 72 ) ) => w.freq;
8                 std.rand2f(0.6, 0.8) => w.noteOn;
9                 0.25::second  * (float)std.rand2(1,2) => now;
10         }
13 spork ~ play() => int playid;
15 4::second => now;
17 //uncomment this line to exit safely..
18 //machine.remove(playid);