mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
3 lines
58 B
Nix
3 lines
58 B
Nix
let
|
|
f = n: if n == 100000 then n else f (n + 1);
|
|
in f 0
|