Help for this page

Select Code to Download


  1. or download this
      my @C = map { [ $_ ] } @{ shift @_ };
    
  2. or download this
      my @C = [];
    
  3. or download this
    sub cartesian {
        my @C = [];
    ...
    
        return @C;
    }