class EasyRepl::Commands::Exit

Public Class Methods

cmd_txt() click to toggle source
# File lib/easy_repl/commands/exit.rb, line 6
def self.cmd_txt
  "exit"
end
run(input) click to toggle source
# File lib/easy_repl/commands/exit.rb, line 10
def self.run(input)
  throw :exit_inner_loop, :exit
end