Method: Choice::Writer.puts

Defined in:
lib/choice/writer.rb

.puts(str = nil) ⇒ Object

Fake puts



171
172
173
174
# File 'lib/choice/writer.rb', line 171

def puts(str = nil)
  str = '' if str.nil?
  print(str + "\n")
end