first commit
This commit is contained in:
16
perl/Examples/Chap7/iterate_function
Normal file
16
perl/Examples/Chap7/iterate_function
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
|
||||
###
|
||||
### iterate_function
|
||||
###
|
||||
|
||||
## Chapter 7 section 1
|
||||
|
||||
sub iterate_function {
|
||||
my $f = shift;
|
||||
return sub {
|
||||
my $x = shift;
|
||||
my $s;
|
||||
$s = node($x, promise { &transform($f, $s) });
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user