るりまサーチ (Ruby 2.4.0)

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

別のキーワード

  1. kernel $ors
  2. english $ors
  3. english ors
  4. $ors kernel
  5. $ors english

モジュール

キーワード

検索結果

Kernel$$ORS -> String | nil (18310.0)

$\ の別名

...$\ の別名

require "English"

print "hoge\nhuga\n"
$OUTPUT_RECORD_SEPARATOR = "\n"
print "fuge"
print "ugo"
# end of sample.rb

ruby sample.rb
hoge
huga
fuge
ugo...

Kernel$$OUTPUT_RECORD_SEPARATOR -> String | nil (9010.0)

$\ の別名

...$\ の別名

require "English"

print "hoge\nhuga\n"
$OUTPUT_RECORD_SEPARATOR = "\n"
print "fuge"
print "ugo"
# end of sample.rb

ruby sample.rb
hoge
huga
fuge
ugo...