quickjs-go/test/hello_module.js

9 lines
166 B
JavaScript
Raw Normal View History

2024-07-03 15:38:51 +08:00
/* example of JS module */
import { fib } from "./fib_module.js";
// console.log("Hello World");
// console.log("fib(10)=", fib(10));
globalThis.result = fib(10);