method
readline
readline(prompt, hist)
public
Hide source
# File lib/debug.rb, line 72 def readline(prompt, hist) STDOUT.print prompt STDOUT.flush line = STDIN.gets exit unless line line.chomp! line end


