blob: fe7143e7cb24c275fd9b063627706382c9d40277 [file] [log] [blame]
// this script expects 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)