Leser: 1
![]() |
|< 1 2 >| | ![]() |
11 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
foreach my $test (@a) {
if ($test->{hello} != 1) {
function($1,
$2,
$3);
print "hello\n";
}
}
1
2
3
4
5
6
7
8
foreach my $test (@a) {
if ($test->{hello} != 1) {
function($1,
$2,
$3);
print "hello\n";
}
}
1
2
3
4
5
6
7
8
9
10
for my $test (@a) {
if ($test->{hello} != 1) {
function(
$1,
$2,
$3,
);
print "hello\n";
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
for my $foo (@bar) {
$foo->get_hyperobject()->baz(
1,
-totalkrasserparameter => 42,
-bildsuchlauf => 'blubb',
);
alles_wird_gut(
17,
42,
23,
$foo->magic_numer(),
scalar @bar,
);
}
1
2
3
4
5
6
7
8
9
10
for my $foo (@bar) {
$foo->get_hyperobject()->baz(1,
-totalkrasserparameter => 42,
-bildsuchlauf => 'blubb');
alles_wird_gut(17,
42,
23,
$foo->magic_numer(),
scalar @bar);
}
![]() |
|< 1 2 >| | ![]() |
11 Einträge, 2 Seiten |