Help for this page

Select Code to Download


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