Skip to content

Instantly share code, notes, and snippets.

@JulesWang
Created October 7, 2011 06:14
Show Gist options
  • Save JulesWang/1269581 to your computer and use it in GitHub Desktop.
Save JulesWang/1269581 to your computer and use it in GitHub Desktop.
# create a new object
object = Object.new
# dup this object, dog is a object
dog = object.clone
# define a function ONLY for this object
def dog.sit
print "I`m sitting\n"
end
dog.sit
my_dog = dog.clone
my_dog.sit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment