- or download this
my @ar = qw/ foo bar baz /;
my %hash = ( one => @ar );
...
__output__
foo
- or download this
my @ar = qw/ foo bar baz /;
my %hash = ( one => \@ar );
...
__output__
foobarbaz
- or download this
use Array::Compare;
...
__output__
the same
- or download this
use Test::More;
...
__output__
the same