Help for this page

Select Code to Download


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