- or download this
$max_count = 100;
$counter = 0;
...
$conter++;
print "COUNT = $count"
}
- or download this
COUNT = 0
COUNT = 1
...
COUNT = 99
- or download this
COUNT = 0
COUNT = 0
COUNT = 0
...
- or download this
my $max_count = 100;
my $counter = 0;
...
$conter++;
print "COUNT = $count"
}