I have been having an issue lately. When trying to debug anything I run my file and use Byebug. However when I run any command on Byebug my main menu command line of terminal appears. Ex:
*****$: ruby file.rb
require "byebug"
debugger
1: def array(array_1, array_2)
if array_1 == array_2
true
else
false
end
end
(byebug) c
*****$: