Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
          return;
       }
    }
    
  2. or download this
    use strict;
    
    ...
          push @stack, substr($food,0,length($food)-1);
       }
    }
    
  3. or download this
    use strict;
    
    ...
       return 1 if $n < 2;
       return fib($n - 2) + fib($n - 1);
    }
    
  4. or download this
    if (length $food) ...
    
    # instead of
    if ($food) ...