diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-06-08 11:37:47 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-06-08 11:37:47 -0400 |
| commit | 9c4bd70bcf7a8672c5e7d7d0a0579304f7c67048 (patch) | |
| tree | e02da60a9b771dbae20bb5a4eccb3ed59069f22e /fib_import.kpl | |
| parent | 2df0f33fa89d4cd3d7378e1e8bd91d9e6e4c6936 (diff) | |
remove assigment from namespace
Diffstat (limited to 'fib_import.kpl')
| -rw-r--r-- | fib_import.kpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fib_import.kpl b/fib_import.kpl index 0c51fec..599204f 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" +( write; stdout ) `use "io" +( fib_string ) `import "./fib.kpl" @ 0 .. 30 {[n] write `sync (stdout; fib_string `sync n) |
