mirror of
https://github.com/bellard/quickjs.git
synced 2025-05-12 19:14:39 +08:00
7 lines
130 B
JavaScript
7 lines
130 B
JavaScript
/* example of JS module */
|
|
|
|
import { fib } from "./fib_module.js";
|
|
|
|
console.log("Hello World");
|
|
console.log("fib(10)=", fib(10));
|