Rubyでeachのブロックに複数の値を渡す

配列で渡す.

[[1, 2], [3, 4]].each{|a, b| puts b}
# 2
# 4

# ちなみに
[[1, 2], [3, 4]].each{|a| puts a[1]}
# 2
# 4