nondescript/benchmarks/fib.nds

6 lines
98 B
Plaintext
Raw Normal View History

2022-01-21 01:51:55 +01:00
var fib = funct(n)
2022-02-05 02:45:29 +01:00
if (n < 2) :result = 1
2022-01-29 22:47:23 +01:00
else :result = fib(n-1) + fib(n-2)
2022-01-21 01:51:55 +01:00
;
2022-02-05 02:45:29 +01:00
print fib(37);