Help for this page

Select Code to Download


  1. or download this
    use List::Part;
    ($letters, $numbers)=part { /\d/ } qw(a b c 1 2 3);
    
  2. or download this
    sub part(&@) {
        my $code=shift;
        my @ret;
    ...
        
        return @ret;
    }