Last active
December 20, 2015 06:09
-
-
Save D3MZ/6084203 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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