summaryrefslogtreecommitdiff
path: root/ack.kpl
diff options
context:
space:
mode:
Diffstat (limited to 'ack.kpl')
-rw-r--r--ack.kpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/ack.kpl b/ack.kpl
index 93cc8d8..5b13d38 100644
--- a/ack.kpl
+++ b/ack.kpl
@@ -3,7 +3,7 @@
`export ack : Fn[m; n] $ (
t : `type m;
- ? |(t != `type n) {
+ ? t != `type n {
`panic "m and n must be the same type"
}
? |(t = Int_signed; t = Float) {
@@ -28,5 +28,5 @@
"#BOLD#WHITE#Usage: % % <m> <n>#\n" `format (args `get 0; args `get 1)
)
}
- ack_string `sync (U64 $ args `get -2; U64 $ args `get -1)
+ `value ack_string `sync (U64 $ args `get -2; U64 $ args `get -1)
)