Help for this page

Select Code to Download


  1. or download this
    my @combinations = ( "1,1","1,2","2,1","2,2")
    
  2. or download this
    my @combinations;
    for my $i (1..2){
    ...
        push @combinations, "$i,$j";
      }
    }