■指定回数繰り返す (times)
■書式
繰り返し回数.times {
繰り返し内容
}
■説明
指定回数繰り返すにはtimesを使います。
■サンプル
#!/usr/bin/ruby
10.times {
print "Loop test\n"
}