Help for this page

Select Code to Download


  1. or download this
    # Your's:
    sub make_call { goto $_[0] }
    
    # Anonymonk's(slightly rearranged):
    sub Y { $_[0]->(@_) }
    
  2. or download this
    make_call (sub {
            my $factor = $_[1];
    ...
                ? $_[0]->($_[0], $factor-1) * $factor
                : 1;
        }, $_);