Thread Array of Hashes aus externer Datei includen?
(5 answers)
Opened by undersok at 2011-09-30 11:19 QuoteUnd was soll Perl können müssen? Zu deinem Problem: ich weiß nicht, wozu Module brauchst und wie du die gestaltet hast. Zum Testen, dass es mit einem ähnlichen Beispiel geht. Datei 1.pm Code (perl): (dl
)
1 2 3 4 5 6 7 8 our @workflow = ( {State => "Blah", Followup => "Blubb", }, {State => "Blah2", Followup => "Blubb2", }, ); Datei main.pl Code (perl): (dl
)
1 2 3 4 $i=1; require "$i.pm"; print $workflow[$i]{State}, "\n"; print $workflow[$i]{Followup}, "\n"; Der Aufruf von main.pl gibt aus: ~ ~ x.pl Blah2 Blubb2 ~ Last edited: 2011-09-30 11:30:31 +0200 (CEST) |