4 lines
70 B
Text
4 lines
70 B
Text
|
|
func fib_rec(n) {
|
|||
|
|
n < 2 ? n : (__FUNC__(n-1) + __FUNC__(n-2))
|
|||
|
|
}
|