mirror of
https://github.com/ruby/ruby.git
synced 2025-08-22 20:44:18 +02:00
18 lines
257 B
Ruby
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
|