= private = protected
gets()
Reads the next expression from this printer.
See IO#gets for more information.
# File lib/irb/xmp.rb, line 115 def gets while l = @exps.shift next if /^\s+$/ =~ l l.concat "\n" print @prompt, l break end l end