//Number 16 //Chuck a day 2009 //by Scott Hewitt //www.ablelemon.co.uk/chuckaday //increase the size of the array to get more channels public class bus { static Gain @ chan[8]; } new Gain[8] @=> bus.chan; function void test(UGen u){ SinOsc s => u; 440 => s.freq; 1000::ms => now; } spork ~ test(bus.chan[1]); bus.chan[1] => dac; 2000::ms => now;