Skip to content

Instantly share code, notes, and snippets.

@kei-p
Last active November 13, 2017 14:10
Show Gist options
  • Save kei-p/28e117a8ea3c57959be6e106169fa834 to your computer and use it in GitHub Desktop.
Save kei-p/28e117a8ea3c57959be6e106169fa834 to your computer and use it in GitHub Desktop.
# Usage:
# ruby <(curl -sL https://gist.githubusercontent.com/kei-p/28e117a8ea3c57959be6e106169fa834/raw/sound_roulette)
SOUNDS = %w(C C#/Db D D#/Eb E F F#/Gb G G#/Ab A A#/Bb B)
SOUNDS.shuffle.each do |sound|
print "#{sound} "
gets
end
puts 'END'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment