write strings to the stream (buffer) with the << method, then flush the buffer with flush. : IO.flush « File Directory « Ruby






write strings to the stream (buffer) with the << method, then flush the buffer with flush.


ios = IO.new( 1, "w" )

ios.puts "IO, IO, it's off to the computer lab I go."

ios << "Ask not " << "for whom the bells toll." << " -John Donne"

ios.flush # => Ask not for whom the bells toll. -John Donne

 








Related examples in the same category