Help for this page
@list = (\$a, \@b, \%c); @list = \($a, @b, %c); # same thing!
#!/usr/bin/perl -w use Data::Dumper; ... print "\n".Dumper($ref)."\n"; print "\n".Dumper($enum_list_ref)."\n"; print "\n".Dumper(\@a)."\n";