From e32c4b377b56d7b23047b44cf8cc95726d4d81ef Mon Sep 17 00:00:00 2001 From: nodist Date: Mon, 8 Jun 2026 14:53:23 -0400 Subject: use destructuring syntax for namespaces --- fib_import.kpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fib_import.kpl') 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) -- cgit v1.2.3