Skip to content

Instantly share code, notes, and snippets.

@erochest
Last active December 18, 2015 22:19
Show Gist options
  • Save erochest/5853420 to your computer and use it in GitHub Desktop.
Save erochest/5853420 to your computer and use it in GitHub Desktop.
Ruby snippets
[1, 1, 2, 3, 5].each { |x| x * 2 }
double = Proc.new { |x| x * 2 }
[1, 1, 2, 3, 5].each { |x| double.call x }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment