mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
11 lines
176 B
Kotlin
Vendored
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 |