4 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
sub start {
my $handle = new Mod();
next_funktion(\$handle);
}
sub next_funktion {
my $handleref = shift;
...
}
1
2
3
4
5
6
7
8
9
sub start {
my $handle = Mod->new();
next_funktion($handle);
}
sub next_funktion {
my $handle = shift;
...
}
4 Einträge, 1 Seite |