Method: Wood::IndentedPrinter#print
- Defined in:
- lib/wood/indented_printer.rb
#print(*args) ⇒ Object
Prints any arguments passed to ‘io`.
17 18 19 20 21 |
# File 'lib/wood/indented_printer.rb', line 17 def print(*args) args.each do |a| io << a end end |