first commit
This commit is contained in:
14
perl/Examples/Chap4/upto
Normal file
14
perl/Examples/Chap4/upto
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
|
||||
###
|
||||
### upto
|
||||
###
|
||||
|
||||
## Chapter 4 section 2.1
|
||||
|
||||
sub upto {
|
||||
my ($m, $n) = @_;
|
||||
return sub {
|
||||
return $m <= $n ? $m++ : undef;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user