- or download this
push @{$wo_usr_proj{$project}}, $user;
- or download this
foreach $proj(sort(keys(%wo_usr_proj)))
{
...
}
print RHANDLE "\n\n";
}
- or download this
use Data::Dumper;
print Dumper \%wo_usr_proj;
...
'WO'
]
};
- or download this
my $foo= "bar";
my $ref= \$foo;
...
__END__
bar
- or download this
my @array= qw(foo bar baz);
my $ref= \@array;
...
__END__
foo:bar:baz
- or download this
my %h= ( foo => 'bar' );
my $ref= \%h;
...
__END__
foo -> bar