Files
kotlin-fork/compiler/testData/codegen/script/fibwp.lang.kt
T
Alex Tkachman a98cd7aa0f script renamed
2012-07-30 13:24:59 +03:00

11 lines
169 B
Kotlin

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 = fib(num)