Help for this page

Select Code to Download


  1. or download this
    my($good, $bad, $ugly)=part {
        /good/ ? 0 :
    ...
        /ugly/ ? 2 :
        (warn "$_ didn't categorize" and 3)
    } @people;
    
  2. or download this
    sub part(&@) {
        my($code, @list)=@_;
    ...
        push @{$ret[&$code()]}, $_ for @list;
        return @ret;
    }