in reply to Re^2: Printing to file
in thread Printing to file
qw() creates an array, from items separated by whitespace. Quotes and commas in qw() are usually a mistake. You want:
Or if, e.g., you wanted more stores (e.g. 10 to 99):my @all_stores = qw(24 25);
my @all_stores = (10..99); # or even ("10".."99")
|
|---|