22件ヒット
[1-22件を表示]
(0.014秒)
ライブラリ
- English (22)
キーワード
-
$ INPUT _ LINE _ NUMBER (11) -
$ NR (11)
検索結果
-
Kernel
$ $ NR -> Integer (3108.0) -
$. の別名
...$. の別名
1 e
2 f
3 g
4 h
5 i
# end of a.txt
require "English"
File.foreach(ARGV.at(0)){|line|
# read line
}
p $INPUT_LINE_NUMBER
# end of sample.rb
ruby sample.rb a.txt
#=> 5... -
Kernel
$ $ INPUT _ LINE _ NUMBER -> Integer (8.0) -
$. の別名
...$. の別名
1 e
2 f
3 g
4 h
5 i
# end of a.txt
require "English"
File.foreach(ARGV.at(0)){|line|
# read line
}
p $INPUT_LINE_NUMBER
# end of sample.rb
ruby sample.rb a.txt
#=> 5...