Hello chuckers
UGen uArray[3];
new SinOsc @=> uArray[0];
new TriOsc @=> uArray[1];
new PulseOsc @=> uArray[2];
for(0 => int i; i < 3; i++)
{
<<<getType(uArray[i].toString())>>>;
now + 1::second => now;
}
What gets printed is the object's type plus what I believe is a reference to memory that I am currently not interested in, separated by a colon (TriOsc:1001f36a0)
Happy holidays!