You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
464 B
Perl

$[ = 9999; #This loop doesn't run because @checksThisMonth returns the array size, which is less than 1501.
for ($i = $[; #initialization list
$i < @checksThisMonth; #conditional expression
$i++){ #increment list
print "$checksThisMonth[$i]";
}
#This loop runs because $#checksThisMonth returns the last cell index.
for ($i = $[; $i <= $#checksThisMonth; $i++){
print "$checksThisMonth[$i]";
}