Skip to content

Instantly share code, notes, and snippets.

@matt297
Created November 15, 2016 00:27
Show Gist options
  • Save matt297/79d38e0f3729df28fae4d78bc41261f7 to your computer and use it in GitHub Desktop.
Save matt297/79d38e0f3729df28fae4d78bc41261f7 to your computer and use it in GitHub Desktop.
Lighthouse Labs - Intro to Web Dev - W4D1 - Oct 2016 Cohort
class Song
def initialize(title)
@title = title
end
def play
puts "Now playing #{@title}"
end
end
song = Song.new('Titanic')
song.play
song2 = Song.new('Phantom of the Opera')
song2.play
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment