Files
kotlin-fork/compiler/testData/codegen/script/fib.lang.kt
T
2012-07-29 21:32:53 +03:00

9 lines
155 B
Kotlin

// 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)