I know I'm doing something stupid... I just cant see it

Okay, so this seems to work… I just wanted to understand the
code in this post, and see if I could put the slide into it…

Now I hear it play, I think I could probably manage a good imitation of Harold
Faltermyers ‘Axel F’ track… but I probably wont try.

Eli…

use_bpm 134
t = 0.25  #general sleep value
x = 0.5  #general release value
lfo1 = lfo2 =lfo3 = ()

notes=(ring :r,:a2,:a2,:r,:r,:c2,:r,:r,:a2,:r,:a2, :a2,:r,:a2,:r,:a2,:d3,:e3,:g3,
       :r,:g2,:r,:as2, :r,:r,:r,:as2, :r,:as3,:as3, :gs2,:r,:as3, :r)

releases=(ring x,x*2,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x*2,x)

sleeps=(ring t,t,t*4, t,t,t,t, t,t,t,t, t,t,t,t, t,t,t,t, t,t,t,t, t,t*2,t, t,t*2,t)

slides=(ring  x,x,x*4, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x, x,x*2,x, x,x,x,x,)

live_loop :lfo do
  lfo1 = (range 80,130,0.5).mirror.tick    #for cutoff
  lfo2 = (range -0.5,0.5,0.05).mirror.tick #for panning
  sleep 1
end

live_loop :resonance do
  lfo3 = (range 0.5,1,0.01).mirror.tick #for resonance
  sleep 2
end

define :t303 do |nte,rls,slp, sld|
  live_loop :player do
    s = synth :supersaw, note: nte.look+12
    if nte.tick != :r
      control s, note: nte.look+12, note_slide: sld.look
    end
    sleep slp.look
  end
end

t303(notes, releases, sleeps, slides)