- or download this
my @array = @{ sub_returning_aref() };
- or download this
my $aref = sub_returning_aref();
- or download this
my @array = sub_returning_list();
- or download this
my $aref = [ sub_returning_list() ];
- or download this
my @array = keys %hash;
my $aref = [ keys %hash ];