- or download this
sub Fib($)
{
...
return 1 if 1 == $index;
return Fib( $index - 1 ) + Fib( $index - 2 );
}
- or download this
sub Fib($)
{
...
return $acc;
}
- or download this
{
my @cache = (0, 1); # Localized so only &Fib sees it.
...
return $cache[-1];
}
}