Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Ruby を勉強していて、わからないことが 1 つあります。Ruby は、単純さとプロトタイピングのスピードを重視して作成されたようです。
では、たとえば、配列の要素を出力したい場合、次のようなことができないのはなぜですか。
puts array.each
代わりに、次のようにする必要があります。
array.each{|element| puts "#{element}"}
不必要に複雑に思えます。洞察はありますか?
あなたはただすることができます
puts array
それを試してみてください。それはどれほど簡単ですか?:)