in reply to array holding reference of hash and another array
how can I dereference @arruse strict; use warnings; my @arrexample = qw(The quick brown fox does stuff);; my %hashexample = qw(k1 v1 k2 v2 k3 v3); my @arr = (\@arrexample, \%hashexample);
|
|---|