Skip to content

Instantly share code, notes, and snippets.

@Sihui
Last active April 27, 2017 05:49
Show Gist options
  • Select an option

  • Save Sihui/59e204aba8e050f9b4b77940579f2ca5 to your computer and use it in GitHub Desktop.

Select an option

Save Sihui/59e204aba8e050f9b4b77940579f2ca5 to your computer and use it in GitHub Desktop.
For [Code Block, Proc, Lambda, and Closure in Ruby]()
#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