DynGen is a meta-UGen which allows to write DSP code on the fly using EEL2 as JIT-compiled language. This is essentially the SC equivalent of the gen~ object from Max MSP. An example on how to use it for halfing the amplitude of a given signal. // start the server s.boot; // registers a dyngen script on the server with identifier \simple ~simple = DynGenDef(\simple, "out0 = in0 * 0.5;").add; // spawn a synth which evaluates our script ( Ndef(\x, {DynGen.ar( 1, // numOutputs ~simple, // s...