るりまサーチ

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

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. matrix p
  5. dh p

ライブラリ

検索結果

Kernel$$CHILD_STATUS -> Process::Status | nil (108.0)

$? の別名

...$? の別名

require "English"

out = `wget https://www.ruby-lang.org/en/about/license.txt -O - 2>/dev/null`

if $CHILD_STATUS.to_i == 0
p
rint "wget success\n"
out.split(/\n/).each { |line|
printf
"%s\n", line
}
else
p
rint "wget failed\n"
end...