■指定回数繰り返す

■書式

for 変数名 in 開始値..終了値

■説明

指定回数繰り返すにはforを使います。

■サンプル

#!/usr/bin/ruby
for i in 1..10
print "#{i}\n"
end