method
gets
v1_8_7_72 -
Show latest stable
- Class:
IRB::ReadlineInputMethod
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