Skip to content

Instantly share code, notes, and snippets.

@snuxoll
Created March 14, 2009 07:52
Show Gist options
  • Save snuxoll/79014 to your computer and use it in GitHub Desktop.
Save snuxoll/79014 to your computer and use it in GitHub Desktop.
def add(num1)
lambda { |num2| num1 + num2 }
end
add(2).call(2) # returns 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment