Help for this page

Select Code to Download


  1. or download this
        #####
        sub mult {
    
    ...
            return @c;
            }
        ####
    
  2. or download this
       ####
       for $i (0..$N){
           @results  = mult($a,@b[$i]);
           }
       ####
    
  3. or download this
       ####
       for $i (0..$N){
           @results[$i][]  = mult($a,@b[$i]);
           }
       ####