first commit
This commit is contained in:
19
perl/Examples/Chap7/cgrep
Normal file
19
perl/Examples/Chap7/cgrep
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
|
||||
###
|
||||
### cgrep
|
||||
###
|
||||
|
||||
## Chapter 7 section 2
|
||||
|
||||
sub cgrep (&) {
|
||||
my $f = shift;
|
||||
my $r = sub {
|
||||
my @result;
|
||||
for (@_) {
|
||||
push @result, $_ if $f->($_);
|
||||
}
|
||||
@result;
|
||||
};
|
||||
return $r;
|
||||
}
|
||||
Reference in New Issue
Block a user