diff options
Diffstat (limited to 'templates/system-flake/pkgs/lib/fibonacci.nix')
| -rw-r--r-- | templates/system-flake/pkgs/lib/fibonacci.nix | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/templates/system-flake/pkgs/lib/fibonacci.nix b/templates/system-flake/pkgs/lib/fibonacci.nix deleted file mode 100644 index a12576b..0000000 --- a/templates/system-flake/pkgs/lib/fibonacci.nix +++ /dev/null @@ -1,7 +0,0 @@ -let - fib = n: - if n > 1 - then fib (n - 1) + fib (n - 2) - else 1; -in - fib |
