summaryrefslogtreecommitdiff
path: root/fib_import.kpl
blob: 0c51fec98d4c278a4c2a43d1ca878a389475ede9 (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)
}