in reply to
about arrays...
It appends $date to the array.
Better would be:
push @weekly_date_list, $date;
[download]
Because this doesn't create a new list to replace the old.
Comment on
Re: about arrays...
Download
Code
In Section
Seekers of Perl Wisdom