in reply to factorial through recursion

In addition to the previously mentioned missing curlies,

Solution:

Replies are listed 'Best First'.
Re^2: factorial through recursion
by lidden (Curate) on Jul 24, 2009 at 09:36 UTC
    Finally, it's very weird that your factorial function takes two inputs. That's inconsistent with the mathematical function.
    Yes, but I note that his function looks similar to what a helper function would look like in a language with tail recursion optimization. It should still return a value instead of printing it though.
      I have no problem with a helper function having more arguments.
      sub fact { my ($n) = @_; local *_fact = sub { my ($n, $prod) = @_; return $prod if $n == 0; return _fact($n-1, $n*$prod); }; return _fact($n, 1); } fact($n);

      In this case, you could even fake it as follows:

      sub fact { my ($n, $prod) = @_; $prod ||= 1; return $prod if $n == 0; return _fact($n-1, $n*$prod); } fact($n);

      But since Perl doesn't do tail recursion optimisation, and since sub calls are relatively slow, you're better off with:

      sub fact { my ($n) = @_; my $prod = 1; $prod *= $n-- while $n > 0; return $prod; } fact($n);