7 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
my $count = 0;
my $fetch_img = sub {
my $item = shift;
#arbeite...
$count++;
};
for my $item (@images) {
$fetch_img->($item);
}
print "Zahl: $count";
1
2
3
4
5
6
7
my $count = 0;
for my $item (@images) {
#arbeite...
$count++;
}
print "Zahl: $count";
1
2
3
4
5
6
my $count = @images;
for my $item (@images) {
#arbeite...
}
print "Zahl: $count";
1
2
3
4
5
6
my $count = @images;
for my $item (@images) {
#arbeite...
}
print "Zahl: $count";
7 Einträge, 1 Seite |