Skip to content

Instantly share code, notes, and snippets.

@plusor
Created July 29, 2013 14:26
Show Gist options
  • Save plusor/6104666 to your computer and use it in GitHub Desktop.
Save plusor/6104666 to your computer and use it in GitHub Desktop.
花括号和 do..end 关系
在Programming Ruby 书中介绍block的时候提到过. 花括号比do..end绑定更为严密.

花括号

puts (1..10).map {|i| i * 2}
2
4
6
8
10
12
14
16
18
20

do..end

puts (1..10).map do |i|  
i * 2 
end

#<Enumerator:0x007fa0e298a8c0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment