summaryrefslogtreecommitdiff
path: root/fib_import.kpl
blob: 599204f2a14ef8c1378427546aa0c45eb3cf00fd (plain)
1
2
3
4
5
6
7
8
9

// Import and run fib_string function

( write; stdout ) `use "io"
( fib_string ) `import "./fib.kpl"

@ 0 .. 30 {[n]
    write `sync (stdout; fib_string `sync n)
}