るりまサーチ (Ruby 2.1.0)

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

別のキーワード

  1. _builtin to_proc
  2. _builtin proc
  3. proc curry
  4. httpserver mount_proc
  5. readline completion_proc

モジュール

キーワード

検索結果

Kernel$$PROCESS_ID -> Integer (9307.0)

$$ の別名

...$$ の別名

require "English"

p sprintf("something%s", $PID) #=> "something5543" など...

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

$? の別名

...$? の別名

require "English"

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

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