Minimal (?) protype-based language.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

13 lines
342 B

// M1 TYPECODES+DELOPT
// 7049155 calls in 1.951509 seconds = 3612156 calls/sec -- pre binop functions
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");