Help for this page
#!/usr/bin/perl use warnings; ... my @masterarray = qw(aaa bbb ccc); print "$_ contains\t". (join ", ", eval "\@$_") . "\n" for @masterarra +y;
{ no strict "refs"; print "$_ contains\t". (join ", ", @$_) . "\n" for @masterarray; }