method

gets

gets()
public

No documentation available.

# File lib/irb/xmp.rb, line 64
    def gets
      while l = @exps.shift
        next if /^\s+$/ =~ l
        l.concat "\n"
        print @prompt, l
        break
      end
      l
    end