Created
November 15, 2016 00:27
-
-
Save matt297/79d38e0f3729df28fae4d78bc41261f7 to your computer and use it in GitHub Desktop.
Lighthouse Labs - Intro to Web Dev - W4D1 - Oct 2016 Cohort
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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