Skip to content

Instantly share code, notes, and snippets.

@luckydev
Created April 9, 2011 17:16
Show Gist options
  • Save luckydev/911566 to your computer and use it in GitHub Desktop.
Save luckydev/911566 to your computer and use it in GitHub Desktop.
One Step Further with Blocks!
Person = Class.new do
#instance method
def say_hi
puts "Hi, Do you like Ruby?"
end
end
Person.new.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