// basic tests of instanceof operator // setup for replicants // patch Rhodey voc=> JCRev r => Echo a => Echo b => Echo c => dac; 220.0 => voc.freq; 0.8 => voc.gain; .8 => r.gain; .2 => r.mix; 1000::ms => a.max => b.max => c.max; 750::ms => a.delay => b.delay => c.delay; .50 => a.mix => b.mix => c.mix; //test out the new operator <<<(a instanceof TubeBell)>>> => int fa; <<<(voc instanceof Rhodey)>>> => int tr; <<<(dac instanceof TubeBell)>>> => fa; <<<(r instanceof JCRev)>>> => tr; <<<(c instanceof Echo)>>> => tr; <<<(c instanceof UGen)>>> => tr; <<<(voc instanceof FM)>>> => tr;