Created
November 16, 2015 22:12
-
-
Save kkchu791/3b6e4edad2c534336b69 to your computer and use it in GitHub Desktop.
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 Dog | |
attr_accessor :name | |
def bark | |
"#@name barks" | |
end | |
def eat | |
"#@name eats" | |
end | |
def chase_cat | |
"#@name chases a cat" | |
end | |
end | |
d = Dog.new | |
d.name = "Leo" | |
puts d.bark | |
puts d.eat | |
puts d.chase_cat | |
d = Dog.new | |
d.name = "Leo" | |
puts d.bark | |
puts d.eat | |
puts d.chase_cat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment