*** empty log message ***
[chuck-blob.git] / examples / osc.ck
blob07d6d2661e4fadc9d0950011dbc30706cad59bfb
1 // connect sine oscillator to audio output
2 sinosc s => dac;
4 // infinite time-loop
5 while(true)
7     // randomly set a frequency
8     std.rand2f( 30.0, 1000.0 ) => s.freq;
9     // advance time
10     100::ms => now;