Skip to content

Instantly share code, notes, and snippets.

@0x0dea
Created July 30, 2015 22:48
Show Gist options
  • Save 0x0dea/80418f541b04fc336d2d to your computer and use it in GitHub Desktop.
Save 0x0dea/80418f541b04fc336d2d to your computer and use it in GitHub Desktop.
puts [1, 2, 3].map { |n|
n * 2
}
puts [1, 2, 3].map do |n|
n * 2
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment