summaryrefslogtreecommitdiff
path: root/fib.kpl
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-17 19:48:14 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-17 19:48:14 -0400
commit4f132dc241f0e9fd0babd34ebf1767e4916fac7c (patch)
treede312b52ff9c9bbcb46cc19cb4e0dc6e63a87113 /fib.kpl
parente5f1630c5ab4c942d3287f92cbb71f34267dc747 (diff)
thread id op
Diffstat (limited to 'fib.kpl')
-rw-r--r--fib.kpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/fib.kpl b/fib.kpl
index a1ba26b..debb6f0 100644
--- a/fib.kpl
+++ b/fib.kpl
@@ -16,7 +16,7 @@
{ `panic "invalid type for n" }
}
? {
- n < 3 { 2 }
+ n < 2 { 1 }
{ `sync(fib; n - 1) + fib `sync n - 2 }
}
)