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

6
examples/test_fib.js Normal file
View File

@@ -0,0 +1,6 @@
/* example of JS module importing a C module */
import { fib } from "./fib.so";
console.log("Hello World");
console.log("fib(10)=", fib(10));