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 irb/output-method.rb, line 82 def print(*opts) STDOUT.print(*opts) end