* Windows Activestate Perl + ppm
so man keine (direkte) Internetverbindung hat, kann man die Module von zip download beziehen
perl -MCPAN -e shell
# perl Makefile.PL # make # make test # make install
use strict;
use Data::Dumper;
my @array = (1,2,3,4);
my $r = [7,8,9];
my %hash = (bli => 10,
bla => 11);
my $h = {a => [2,3],
b => [4,5],
c => {e => 6, f=>7},
g => \@array,
h => $r,
i => \%hash,
};
print Dumper $h;