Help for this page

Select Code to Download


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