D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
proc
/
self
/
root
/
proc
/
self
/
root
/
opt
/
alt
/
ruby34
/
share
/
ruby
/
irb
/
command
/
Filename :
exit.rb
back
Copy
# frozen_string_literal: true module IRB # :stopdoc: module Command class Exit < Base category "IRB" description "Exit the current irb session." def execute(_arg) IRB.irb_exit end end end # :startdoc: end