Skip to content

Instantly share code, notes, and snippets.

class KaraokeMachine
def initialize(melody_string)
@melody = Melody.parse(melody_string)
end
def transpose(amount)
@melody.transpose(amount).present
end
end