*** empty log message ***
[chuck-blob.git] / v2 / examples / basic / step.ck
blobdf53f36aba62d07818b639b45fd251ee5d2977a5
1 // step gen to dac
2 Step s => dac;
3 .5 => float v;
5 // infinite time-loop
6 while( 1 )
8     // advance time
9     1::ms => now;
10     // set value
11     v => s.next;
12     -v => v;