Help for this page

Select Code to Download


  1. or download this
        
     #my ( $arref, $targ ) = @_; # args are array ref, int value
      my ( $targ, $arref ) = @_; # args are: (int, array ref)
    
  2. or download this
        my $nextidx = $asize / 2;
        my $nextinc = $nextidx / 2;
    
  3. or download this
        my $nextidx = int($asize / 2);
        my $nextinc = int($nextidx / 2);
    
  4. or download this
    class Array_with_Hash:
    
    ...
     }
    
    ...