Help for this page

Select Code to Download


  1. or download this
    my $aryref = \qw(A B C);
    
  2. or download this
        @list = (\$a, \@b, \%c);
        @list = \($a, @b, %c);      # same thing!