Reverb
        
//no remote impulse, uses generated impulse
//default values - seconds: 3, decay: 2, reverse: false
__().
    sampler({path:"../../data/various/stein.mp3"}).
    reverb().
    dac().
    play();
        
        
        
//no remote impulse, uses generated impulse
__().
    sampler({path:"../../data/various/stein.mp3"}).
    reverb({reverse:true,decay:2,seconds:4}).
    dac().
    play();
        
        
        
//uses remote impulse
__().
    sampler({path:"../../data/various/stein.mp3"}).
    reverb({path:"../../data/ir/hall.wav"}).
    dac().
    play();
        
        
        Delay
        
//default values : damping - 0.84, cutoff - 1500, feedback - 0.5, delay - 1
__().
    sampler({path:"../../data/various/stein.mp3"}).
    delay().
    dac().
    play();
        
        
        
__().
    sampler({path:"../../data/various/stein.mp3"}).
    delay({damping:.9,cutoff:3000,feedback:0.9,delay:3}).
    dac(.5).
    play();
        
        
        Comb
        
//default values - feedback:.84,cutoff:3000,damping:.84,delay:0.027
__().
    sampler({path:"../../data/various/gun-cock.wav",loop:true}).
    comb().
    dac(.25).
    play();
        
        
        
__().
    sampler({path:"../../data/various/gun-cock.wav",loop:true}).
    comb({feedback:1.18,cutoff:6000,damping:.8,delay:.025}).
    dac(.25).
    play();