るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.051秒)
トップページ > クエリ:Ruby[x] > クエリ:string[x] > クエリ:ruby[x] > 種類:変数[x] > クエリ:$[x] > モジュール:Kernel[x] > クエリ:$ORS[x]

別のキーワード

  1. _builtin $6
  2. _builtin $kcode
  3. _builtin $safe
  4. _builtin $5
  5. _builtin $10

ライブラリ

検索結果

Kernel$$ORS -> String | nil (24325.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 (9225.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...