nondescript/benchmarks/fib.nds

6 lines
102 B
Plaintext
Raw Normal View History

2022-01-21 01:51:55 +01:00
var fib = funct(n)
2022-01-28 04:17:11 +01:00
if (n < 2) ^result = 1.5
2022-01-21 01:51:55 +01:00
else ^result = fib(n-1) + fib(n-2)
;
2022-01-28 04:17:11 +01:00
print fib(37.2);