Leser: 1
|< 1 2 >| | 18 Einträge, 2 Seiten |
$liste{$index} = @pro;
$liste{$index} = \@pro;
2 ARRAY(0x225d34)
@{$liste{$index}}
1
2
3
4
5
6
7
$liste{$index} = \@pro;
...
while ((my $index, my $satz) = each %liste) {
print "$index $satz}}\n";
}
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl
use strict;
use warnings;
my @pro = qw(1 2 3);
my %hash = ();
$hash{'a'} = \@pro;
foreach my $key (keys %hash) {
print $_."\n" foreach(@{$hash{$key}});
}
|< 1 2 >| | 18 Einträge, 2 Seiten |