3 lines
119 B
Perl
3 lines
119 B
Perl
my $scalarref = \'a scalar';
|
|
my $arrayref = ['an', 'array'];
|
|
my $hashref = { firstkey => 'a', secondkey => 'hash' }
|