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
    SWITCH: {
        last SWITCH if $id == $CASH and $tcash += $amt;
    ...
        last SWITCH if $id == $CC_MAN_AUTH and $tcc_man_auth += $amt;
        $tcredit += $amt;
    }