Script:
@array = qw(Apple Orange Banana);
$count = 0;
foreach $fruit (@array) {
print "Fruit $count: $array[$count] \n";
$count++;
}
Output:
Fruit 0: Apple
Fruit 1: Orange
Fruit 2: Banana
@array = qw(Apple Orange Banana);
$count = 0;
foreach $fruit (@array) {
print "Fruit $count: $array[$count] \n";
$count++;
}
Output:
Fruit 0: Apple
Fruit 1: Orange
Fruit 2: Banana