Skip to content

Instantly share code, notes, and snippets.

@hackervera
Created September 22, 2010 04:35
Show Gist options
  • Select an option

  • Save hackervera/591147 to your computer and use it in GitHub Desktop.

Select an option

Save hackervera/591147 to your computer and use it in GitHub Desktop.
obj = {
:addOne => lambda {|x| x+1},
:face => "happy"
}
puts obj[:addOne].call(5) #=> 6
puts obj[:face] #=> happy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment