Skip to content

Instantly share code, notes, and snippets.

@iamsolarpowered
iamsolarpowered / 12_bar_blues.rb
Created March 25, 2012 07:59
12-Bar Blues in Ruby
module Play
def self.note note = nil
@note = note.to_s.upcase
self
end
def self.for bars = 1, length = 1
bars.times do
puts @note
sleep length