summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-05-20 15:15:36 -0400
committernodist <kevin.comas.git@gmail.com>2026-05-20 15:15:36 -0400
commitd4f7c50a64df49b920ac501fc5e4088728f6358b (patch)
tree41262ab4f3c88e9be2b49b82823d78f60e821823
parent390503adc3035b18b0c97f22f40f107521817397 (diff)
use m > 0 and n > 0 as ack if default
-rw-r--r--ack.kpl3
1 files changed, 1 insertions, 2 deletions
diff --git a/ack.kpl b/ack.kpl
index f27af3e..bbd9784 100644
--- a/ack.kpl
+++ b/ack.kpl
@@ -12,8 +12,7 @@
? {
m = 0 { n + 1 }
&(m > 0; n = 0) { ack `sync (m - 1; 1) }
- &(m > 0; n > 0) { ack `sync (m - 1; ack `sync (m; n - 1)) }
- { 0 }
+ { ack `sync (m - 1; ack `sync (m; n - 1)) }
}
)