method
gets
v1_9_1_378 -
Show latest stable
- Class:
XMP::StringInputMethod
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