summaryrefslogtreecommitdiff
path: root/trivionomicon/templates/system-flake/pkgs/lib/fibonacci.nix
blob: a12576baab975bcbc0a3a0799b6ee418a502ceb1 (plain)
1
2
3
4
5
6
7
let
  fib = n:
    if n > 1
    then fib (n - 1) + fib (n - 2)
    else 1;
in
  fib