Help for this page

Select Code to Download


  1. or download this
    my @a = qw(1 2);
    my @b = \(@a);
    ...
    print "Addresses do not match$/" unless "@b" eq "@c";
    __END__
    Addresses do not match
    
  2. or download this
    ${$_}++ for map \(@$_),@{$a};