Music for a Ruby-Rails system!

use_synth :tb303

loop do
play (chord :c3, :1) , realese: 0.1
sleep 0.25
end

Hello! pretty glad that you are in the community, but the code you share does not work :frowning:

I took the liberty to make it run:

loop do
  play chord(:c3, :minor)
  sleep 0.25
end