Skip to content

Instantly share code, notes, and snippets.

@D3MZ
Last active December 20, 2015 06:09
Show Gist options
  • Save D3MZ/6084203 to your computer and use it in GitHub Desktop.
Save D3MZ/6084203 to your computer and use it in GitHub Desktop.
#instead of writing
def square number
number * number
end
#you can write
square = lambda {|number| number * number}
#or
square = ->(number) {number * number}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment