summaryrefslogtreecommitdiff
path: root/fib.kpl
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-02 17:11:52 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-02 17:11:52 -0400
commit804601360f32e5b43463259535a2e8988ce276c5 (patch)
tree13b90771c6157ce320ae86e9837dba50e931e3d1 /fib.kpl
parente7e5af8874121da995611e685719c91af8e38ae1 (diff)
fix error string
Diffstat (limited to 'fib.kpl')
-rw-r--r--fib.kpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/fib.kpl b/fib.kpl
index a650f88..6ddefab 100644
--- a/fib.kpl
+++ b/fib.kpl
@@ -29,8 +29,8 @@
( args ) : `use "sys"
? 3 != `length args {
`return `error String $ (
- "#BOLD#RED#Got %#\n" `format `join args
- "#BOLD#WHITE#Usage % % <n>#\n" `format (args `get 0; args `get 1)
+ "#BOLD#RED#Got:# %\n" `format `join args
+ "#BOLD#WHITE#Usage:# % % <n>\n" `format (args `get 0; args `get 1)
)
}
`print fib_string `sync U64 $ args `get -1