るりまサーチ

最速Rubyリファレンスマニュアル検索!
33件ヒット [1-33件を表示] (0.076秒)
トップページ > クエリ:-[x] > クエリ:r[x] > クエリ:argv[x] > ライブラリ:English[x]

別のキーワード

  1. _builtin -
  2. open-uri open
  3. irb/input-method new
  4. irb/input-method gets
  5. matrix -

モジュール

キーワード

検索結果

Kernel$$ARGV -> [String] (12309.0)

$* の別名

...$* の別名

r
equire "English"
p $ARGV
# end of sample.rb

r
uby sample.rb 31 /home/hoge/fuga.txt
#=> ["31", "/home/hoge/fuga.txt"]...

Kernel$$INPUT_LINE_NUMBER -> Integer (6308.0)

$. の別名

...$. の別名

1 e
2 f
3 g
4 h
5 i
# end of a.txt

r
equire "English"

File.foreach(ARGV.at(0)){|line|
# read line
}
p $INPUT_LINE_NUMBER
# end of sample.rb

r
uby sample.rb a.txt
#=> 5...

Kernel$$NR -> Integer (6308.0)

$. の別名

...$. の別名

1 e
2 f
3 g
4 h
5 i
# end of a.txt

r
equire "English"

File.foreach(ARGV.at(0)){|line|
# read line
}
p $INPUT_LINE_NUMBER
# end of sample.rb

r
uby sample.rb a.txt
#=> 5...