irb
irb copied to clipboard
Implement `exit_program` (`!!!`) command
Pry includes an exit-program command, also aliased as quit-program and !!! which calls Kernel.exit. This is useful when binding.pry has been used in a loop.
This implements a similar exit_program command, also aliased as quit_program and !!!.
With #851, the new exit! command is now essentially exit_program without taking an status argument. Do you want to rebase this PR and then introduce the !!! as an alias to it?