summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-05-19 12:38:03 -0400
committernodist <kevin.comas.git@gmail.com>2026-05-19 12:38:03 -0400
commit9145160d51bf3795c866bb9a2ac695963494eee5 (patch)
tree0ce3474fe2e985c6cd20a3f2bb5335c824d17bf3
parenta496efcd5d4660da359ce4702b5293698f115dda (diff)
use panic insted of exit
-rw-r--r--ack.kpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/ack.kpl b/ack.kpl
index 80a3a74..1eb7694 100644
--- a/ack.kpl
+++ b/ack.kpl
@@ -3,7 +3,7 @@
`export ack : Fn[m; n] $ (
? !=(`type m; `type n) {
- `exit "m and n must be the same type and above zero"
+ `panic "m and n must be the same type"
}
? {
m = 0 { n + 1 }