Thread Problem mit HASH ref (48 answers)
Opened by bianca at 2010-05-02 13:09

bianca
 2010-05-09 16:58
#136941 #136941
User since
2009-09-13
7016 Artikel
BenutzerIn

user image
[quote="pq@2010-05-09T14:32:18"]dispatch-tabelle kam hier schon häufig vor, aber ich wiederhole gern nochmal:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
my %dispatch = (
    blubb => \&sub1,
    foo   => \&sub2,
    bar   => \&sub3,
);
sub sub1 { ... }
...

my $sub = "foo";
$dispatch{ $sub }->($parameter); # ruft sub2($parameter) auf

So mach ich es.
Danke
10 print "Hallo"
20 goto 10

View full thread Problem mit HASH ref