Hello chuckers
I am looking for a reference to the 'string' object class in chuck. I am
having a hard time trying to guess what methods are available for the
class.
I also recently came across with the StringTokenizer object but it seems to
work only when the token is a white space. Is it possible to assign a
different token to the object?
here is what I am working on
UGen uArray[3];
new SinOsc @=> uArray[0];
new TriOsc @=> uArray[1];
new PulseOsc @=> uArray[2];
for(0 => int i; i < 3; i++)
{
<<