2020-01-05 release

This commit is contained in:
bellard
2020-09-06 18:53:08 +02:00
parent 9096e544ba
commit 91459fb672
63 changed files with 95633 additions and 0 deletions

10
examples/fib_module.js Normal file
View File

@@ -0,0 +1,10 @@
/* fib module */
export function fib(n)
{
if (n <= 0)
return 0;
else if (n == 1)
return 1;
else
return fib(n - 1) + fib(n - 2);
}