最近の更新
このページへのアクセス 今日: 3 / 昨日: 1 総計: 281
for.rb
for i in 1..3 do print("i=", i, "\n") end print("End")
$ ruby for.rb i=1 i=2 i=3