Help for this page
my $string = ""; my @new_array; ... } } push @new_array, $string; # takes care of the last element
my $string = ""; while (my $line = <$input_fh>) { ... } } push @new_array, $string; # take care of the last element