Passing an array to a synth

This is a weird corner case that’s avoided if you used NamedControl for synth controls.

(
SynthDef.new(\mysyn, {
  var sig;

  sig = Saw.ar(freq: \frq.kr([220, 230]), mul: 0.1);

  Out.ar(\out.ir, sig);
}).add
)
1 Like