class IRB::StdioOutputMethod
A standard output printer
Public Instance Methods
print(*opts)
click to toggle source
Prints the given opts
to standard output, see IO#print
for more information.
# File lib/irb/output-method.rb, line 88 def print(*opts) STDOUT.print(*opts) end