Skip to content

Instantly share code, notes, and snippets.

@davidcelis
Last active March 6, 2020 10:19
Show Gist options
  • Save davidcelis/fe3c12aa08cf85e106f9 to your computer and use it in GitHub Desktop.
Save davidcelis/fe3c12aa08cf85e106f9 to your computer and use it in GitHub Desktop.
A simple metronome in Ruby
class Metronome
def self.start(bpm: 120)
loop do
end
rescue Interrupt
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment