Какова цель f.seek(0)
в этом script? Зачем нам нужно rewind(current_file)
, если файл уже открыт программой?
input_file = ARGV[0]
def print_all(f)
puts f.read()
end
def rewind(f)
f.seek(0)
end
def print_a_line(line_count,f)
puts "#{line_count} #{f.readline()}"
end
current_file = File.open(input_file)
puts "First Let print the whole file:"
puts # a blank line
print_all(current_file)
puts "Now Let rewind, kind of like a tape"
rewind(current_file)
puts "Let print the first line:"
current_line = 1
print_a_line(current_line, current_file)