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