method

gets

gets()
public

No documentation available.

# File lib/irb/input-method.rb, line 96
      def gets
        if l = readline(@prompt, false)
          HISTORY.push(l) if !l.empty?
          @line[@line_no += 1] = l + "\n"
        else
          @eof = true
          l
        end
      end