Help for this page

Select Code to Download


  1. or download this
    for $i (0..1) {
      for $j ($i+1..3) {
        for $k ($j+1..5) {
          for $l ($k+1..7) {
    
  2. or download this
    my $depth = 4;
    my $loop = [[0..1]];
    ...
      my @args = @_;
      print join '', @args, "\n";
    }
    
  3. or download this
    my $n = shift;
    sub plustwo_iter {
    ...
      output(@list);
    }