use strict; use warnings; #### # $item_date = "DATE"; # becomes my $item_date = "DATE"; #### # open (file_read, "input-checkbook.txt"); # becomes open my $read, '<', $filepath or die "impossible to read from [$filepath]!"; .. close $read;
## # $item_date = "DATE"; # becomes my $item_date = "DATE"; ##
## # open (file_read, "input-checkbook.txt"); # becomes open my $read, '<', $filepath or die "impossible to read from [$filepath]!"; .. close $read;