Hi, Im new to sonic Pi and I have a musician background but not a coding background so I am struggling on how to do some simple things. Right now I would like to know how would I write a live loop of arpeggios that goes with the next sequence of chords. I have been trying multiple ways but I cant seem to find the correct way.
live_loop :keys do
use_synth :dtri
play [(chord :c3, :major), (chord :g3, :major), (chord :a3, :minor)].ring.tick, release: 2, attack: 0.4
sleep 2
end
end