Help for this page

Select Code to Download


  1. or download this
    sub lambda {
        my $f = $_[1];
    ...
            }
        }
    }
    
  2. or download this
    sub Y {
        my ( $curried_rec ) = @_;
    ...
            $curried_rec->( sub { $f2->( $f2 )->( @_ ) } )
        } )
    }
    
  3. or download this
    print Y( sub {
        my ( $rec ) = @_;
    ...
    } )->( 10 );;
    
    3628800