Skip to content

Instantly share code, notes, and snippets.

@bryanmikaelian
Created November 14, 2011 23:09
Show Gist options
  • Save bryanmikaelian/1365522 to your computer and use it in GitHub Desktop.
Save bryanmikaelian/1365522 to your computer and use it in GitHub Desktop.
Simple ruby example
class Puppy
def bark
puts 'Woof'
end
def wag_tail
unless self.sad?
puts '<wags tail>'
end
end
end
# What happens here?
p = Puppy.new
p.bark
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment