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