mirror of
https://github.com/bellard/quickjs.git
synced 2025-05-29 01:49:18 +08:00
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
/* example of JS and JSON modules */
|
|
|
|
import { fib } from "./fib_module.js";
|
|
import msg from "./message.json";
|
|
|
|
console.log("Hello World");
|
|
console.log("fib(10)=", fib(10));
|
|
console.log("msg=", msg);
|