Help for this page

Select Code to Download


  1. or download this
    sub curry2 {
        my ($fn, $argstack) = @_;
    
    ...
            }
        };
    }
    
  2. or download this
    my $myprint = sub { print @_; };
    my $curry = curry2 ($myprint);
    $curry->("a")->("b")->("c")->();