Last active
April 27, 2017 05:49
-
-
Save Sihui/59e204aba8e050f9b4b77940579f2ca5 to your computer and use it in GitHub Desktop.
For [Code Block, Proc, Lambda, and Closure in Ruby]()
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
| #Code Block | |
| #1 {} Mostly used as a one-liner | |
| { puts 'Hi' } | |
| #2. do end | |
| do | |
| puts 'Hi' | |
| end | |
| #arguments are | |
| # wrapped between || | |
| [1, 2].map {|num| num * 2} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment