「Ruby」for文のサンプル
構文
for 変数 in オブジェクト do
処理コード
end
サンプルコード
#!/usr/bin/ruby # -*- coding: UTF-8 -*- for num in 1..10 do p num end
結果
>ruby test.rb
1
2
3
4
5
6
7
8
9
10
使用例2
#!/usr/bin/ruby # -*- coding: UTF-8 -*- for num in [5,6,7,10] do p num end
実行結果
>ruby test.rb
5
6
7
10