- or download this
0: 12; @counts = (0)
1: 34; @counts = (0)
2: 56; @counts = (0)
@main::counts = (6)
- or download this
#!/usr/bin/perl
use strict;
...
print "our \@counts = (".join(",",@counts).")\n";
#print "our \@counts = (@counts)\n";
}
- or download this
In string, @counts now must be written as \@counts at .\counts.pl line
+ 22, near "our \@counts = (@counts"
Execution of .\counts.pl aborted due to compilation errors.