Skip to content

Instantly share code, notes, and snippets.

@manveru
Forked from hackervera/higher.rb
Created September 22, 2010 08:56
Show Gist options
  • Save manveru/591382 to your computer and use it in GitHub Desktop.
Save manveru/591382 to your computer and use it in GitHub Desktop.
def higher_order
lambda{|arg| arg + yield(5) }
end
foo = lambda{|arg| arg + 1 }
higher_order(&foo).(3) # => 9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment