Files
kotlin/compiler/testData/codegen/scriptCustom/fibwp.lang.kt
2014-08-13 15:13:17 +04:00

11 lines
176 B
Kotlin
Vendored

package test
// this script expected parameter num : Int
fun fib(n: Int): Int {
val v = if(n < 2) 1 else fib(n-1) + fib(n-2)
return v
}
val result: Int = fib(num)
12