Help for this page

Select Code to Download


  1. or download this
    $Igot = 'whatever';
    $TheBlues = 'whateverelse';
    ...
        my @Array = @_;
        ....
    }
    
  2. or download this
    Callsub($number, \@Somearray, \@Otherarray);
    sub Callsub {
    ...
        my @array2 = @{ +shift };
        ....
    }