index
:
lix
main
User &
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
functional
/
lang
/
eval-okay-tail-call-1.nix
blob: a3962ce3fdb5f90a5f6ceb21ce2990d66b9424f8 (
plain
)
1
2
3
let
f
=
n
:
if
n
==
100000
then
n
else
f
(
n
+
1
);
in
f
0