New to ruby, put on your newbie gloves.
Is there any difference (obscure or practical) between the following two snippets?
my_array = [:uno, :dos, :tres]
my_array.each { |item|
puts item
}
my_array = [:uno, :dos, :tres]
my_array.each do |item|
puts item
end
I realize the bracket syntax would allow you to place the block on one line
my_array.each { |item| puts item }
but outside of that are there any compelling reasons to use one syntax over the other?
eachworks with brackets but not withdo-end(ruby), Block definition - difference between braces anddo-end?, Ruby multiline block withoutdoend, What is the difference or value of these block coding styles in Ruby? and Ruby block and unparenthesized arguments. – Jörg W Mittag Jul 28 '11 at 8:18