summaryrefslogtreecommitdiff
path: root/fib_import.kpl
diff options
context:
space:
mode:
Diffstat (limited to 'fib_import.kpl')
-rw-r--r--fib_import.kpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/fib_import.kpl b/fib_import.kpl
index 599204f..75bfe48 100644
--- a/fib_import.kpl
+++ b/fib_import.kpl
@@ -1,8 +1,8 @@
// Import and run fib_string function
-( write; stdout ) `use "io"
-( fib_string ) `import "./fib.kpl"
+`use "io" [write; stdout]
+`import "./fib.kpl" [fib_string]
@ 0 .. 30 {[n]
write `sync (stdout; fib_string `sync n)