Thread Problem mit HASH ref
(48 answers)
Opened by bianca at 2010-05-02 13:09
Und was ist hiermit?
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 #!/usr/bin/perl -W use strict; no strict 'refs'; use warnings; use Data::Dumper; my %hash; $hash{1}{2} = '1/2'; $hash{1}{2}{3} = '1/2/3'; print Dumper (\%hash); print "existiert!" if defined $hash{1}{2}{3}; Erwarten würde ich ungefähr soetwas: 10 print "Hallo"
20 goto 10 |