- each_line
Read file line-by-line
examples/files/read_line_by_line.cr
if ARGV.size != 1 puts "Need a filename on the command line" exit 1 end filename = ARGV[0] File.each_line(filename) { |line| puts line }
if ARGV.size != 1 puts "Need a filename on the command line" exit 1 end filename = ARGV[0] File.each_line(filename) { |line| puts line }