SC Audio Coding makes me happy
JITLib Example
A simple one:
p = ProxySpace.push(s);
s.boot;
~toll = SinOsc.ar(257);
~toll.play;
A more complex one:
p = ProxySpace.push(s);
s.boot;
~toll = SinOsc.ar(257);
~toll.play;
~toll.fadeTime = 5;
~toll = {RLPF.ar(WhiteNoise.ar, 400)};
Plain Example
s.boot;
x = {SinOsc.ar}.play;
x.free;