Skip to content

Instantly share code, notes, and snippets.

@luckydev
Created April 9, 2011 17:09
Show Gist options
  • Save luckydev/911564 to your computer and use it in GitHub Desktop.
Save luckydev/911564 to your computer and use it in GitHub Desktop.
traditional/usual way to define class
class Person
def say_hi
puts "Hi, Do you like Ruby?"
end
end
john = Person.new
john.say_hi
#output
=> Hi, Do you like Ruby?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment