Files
kotlin/compiler/testData/codegen/scriptCustom/fibwp.lang.kts
Ilya Chernikov 22439250e2 Use kts file extension instead of kt in tests...
since all "kt" files are now considered - definitely non-scripts
2018-05-03 22:15:10 +02: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