quickjs/examples/hello_module.js

9 lines
200 B
JavaScript
Raw Normal View History

/* example of JS and JSON modules */
2020-09-06 16:53:08 +00:00
import { fib } from "./fib_module.js";
import msg from "./message.json";
2020-09-06 16:53:08 +00:00
console.log("Hello World");
console.log("fib(10)=", fib(10));
console.log("msg=", msg);