Skip to content

Instantly share code, notes, and snippets.

@kkchu791
Created November 16, 2015 22:12
Show Gist options
  • Save kkchu791/3b6e4edad2c534336b69 to your computer and use it in GitHub Desktop.
Save kkchu791/3b6e4edad2c534336b69 to your computer and use it in GitHub Desktop.
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