Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Pure Perl tail call optimization

by Limbic~Region (Chancellor)
on Mar 05, 2004 at 18:12 UTC ( [id://334306]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    print tail_factorial(1, 8);
    
  2. or download this
    sub tail_factorial {
        my ($n, $total) = @_;
    ...
        @_ = ($n - 1, $total * $n);
        goto &tail_factorial;
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://334306]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (5)
As of 2024-03-29 15:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found