- or download this
use feature qw(say state);
...
say '[', join(', ', @$_), ']' for @partitions;
print "\n";
}
- or download this
use feature qw(say);
...
say '[', join(', ', @$_), ']' for @partitions;
print "\n";
}
- or download this
use feature qw(say);
...
say '[', join(', ', @$_), ']' for @partitions;
print "\n";
}