summaryrefslogtreecommitdiff
path: root/lib/irb/command/exit.rb
blob: b4436f0343710d6589bc2fd006fc6b5fd536b742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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