D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
alt
/
ruby34
/
share
/
ruby
/
irb
/
command
/
Filename :
force_exit.rb
back
Copy
# frozen_string_literal: true module IRB # :stopdoc: module Command class ForceExit < Base category "IRB" description "Exit the current process." def execute(_arg) throw :IRB_EXIT, true end end end # :startdoc: end