Minimal (?) protype-based language.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

10 lines
238 B

nfib = (n) { if (n < 2) 1; else nfib(n-1) + nfib(n-2) + 1; };
then = cputime();
calls = nfib(32);
now = cputime();
secs = now - then;
print(calls, " calls in ",
secs, " seconds = ",
round(calls / secs), " calls/sec\n");