- or download this
my @foo;
my %bar;
- or download this
my @foo = ();
my %bar = ();
- or download this
#!/usr/bin/perl
...
print STDERR "\%bar_2:\n";
Dump (\%bar_2);
__END__
- or download this
my $yuk;
- or download this
my $yuk = {};
- or download this
#!/usr/bin/perl
...
Dump ($yuk_1);
print STDERR "\$yuk_2:\n";
Dump ($yuk_2);