mirror of
https://github.com/bellard/quickjs.git
synced 2024-11-22 13:48:11 +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));
|