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

// Import and run fib_string function

`use "io" [write; stdout]
`import "./fib.kpl" [fib_string]

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