Ruby 1.9.2 リファレンスマニュアル > ライブラリ一覧 > library _builtin > class Integer > times

instance method Integer#times

times {|n| ... } -> self
times -> Enumerable::Enumerator

self 回だけ(0 から self-1 まで)繰り返します。 self が負であれば何もしません。

[RETURN]
self を返します。
3.times { puts "Hello, World!" }
# Hello, World! と3行続いて表示される。

[SEE_ALSO] Integer#upto, Integer#downto, Integer#step