Files
devops/perl/Examples/Chap7/cgrep
2025-09-17 16:08:16 +08:00

20 lines
200 B
Plaintext

###
### cgrep
###
## Chapter 7 section 2
sub cgrep (&) {
my $f = shift;
my $r = sub {
my @result;
for (@_) {
push @result, $_ if $f->($_);
}
@result;
};
return $r;
}