Class: IRB::StdioOutputMethod
- Inherits:
-
OutputMethod
- Object
- OutputMethod
- IRB::StdioOutputMethod
- Defined in:
- lib/irb/output-method.rb
Overview
A standard output printer
Instance Method Summary collapse
-
#print(*opts) ⇒ Object
Prints the given
opts
to standard output, see IO#print for more information.
Methods inherited from OutputMethod
#parse_printf_format, #pp, #ppx, #printf, #printn, #puts
Instance Method Details
#print(*opts) ⇒ Object
Prints the given opts
to standard output, see IO#print for more information.
88 89 90 |
# File 'lib/irb/output-method.rb', line 88 def print(*opts) STDOUT.print(*opts) end |