blob: 07a3bfc4aa5786a30cdfd82e7d26344686a36498 [file] [log] [blame]
import org.jetbrains.kotlin.scripts.*
// this script expected parameter num : Int
fun fib(n: Int): Int {
val v = fibCombine( { fib(it) }, n)
println("fib($n)=$v")
return v
}
println("num: $num")
val result = fib(num)