Method: HighLine#puts

Defined in:
lib/highline.rb

#puts(*args) ⇒ Object

Call #puts on the HighLine’s output stream

Parameters:

  • args (String)

    same args for Kernel#puts



487
488
489
# File 'lib/highline.rb', line 487

def puts(*args)
  @output.puts(*args)
end