Tux / Spreadsheet-Read

Meta-Wrapper for reading spreadsheet data with perl5
15 stars 17 forks source link

localize $_ before assignment #12

Closed andrewgregory closed 7 years ago

andrewgregory commented 7 years ago

Fixes: my $file = 'files/blank.csv'; ReadData($_) foreach ($file); print $file; # prints ',,,'

Tux commented 7 years ago

Thanks for spotting. I changed it to using a lexical instead