- or download this
sub slurp
{
...
$/ = $save;
return @list;
}
- or download this
my @list = <FIL>;
- or download this
my $input = do { local $/; <FIL> };
- or download this
for (my $i=1; $i <= $pop->Count(); $i++)
- or download this
for my $i(1..$pop->Count())