Add quickjs-2021-03-27 to third_party

This commit is contained in:
Justine Tunney 2021-04-08 20:55:43 -07:00
parent f40f97bd07
commit 1fbfbb3192
67 changed files with 99832 additions and 0 deletions

View file

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