// hello, sinewave!! T("sin", 1320).play(); // 880Hz pulse with tremolo(10Hz) T("*", T("pulse", 880, 0.2), T("tri", 10, 0.6, 0.8).kr()).play(); // 660Hz triangle with vibrato(5Hz) T("tri", T("sin", 5, 20, 660).kr()).play(); // computer noise var tone, timerId; tone = T("fami", 440).play(); tone.onplay = function() { timerId = setInterval(function() { tone.freq = (Math.random() * 2000) + 200; }, 10