ruby/lib/irb/command/exit.rb
Hiroshi SHIBATA 077558ee2b
[Bug #20511] Update reline-0.5.7 (#10848)
* Update reline-0.5.7

* Update irb-1.13.1
2024-05-28 15:54:39 -07:00

18 lines
257 B
Ruby

# 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