Help for this page

Select Code to Download


  1. or download this
      (caller)[3] eq 'fib' or ($nth !~ m{^\d+\z}a or @_) and die $fib_die_
    +msg;
    
  2. or download this
    use strict; use warnings;
    use 5.20.0;
    ...
    }
    
    say fib @ARGV;
    
  3. or download this
    sub fib :prototype($) ($nth : Uint) {
      # check for 1 == @_ already done
      ...
    }