Minimal (?) protype-based language.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10 行
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");