RosettaCodeData/Task/Synchronous-concurrency/Ruby/synchronous-concurrency-1.rb

4 lines
99 B
Ruby
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
count = 0
IO.foreach("input.txt") { |line| print line; count += 1 }
puts "Printed #{count} lines."