RosettaCodeData/Task/Pointers-and-references/Perl/pointers-and-references-3.pl
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

3 lines
119 B
Perl

my $scalarref = \'a scalar';
my $arrayref = ['an', 'array'];
my $hashref = { firstkey => 'a', secondkey => 'hash' }