quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

hello_module.js (200B)


      1 /* example of JS and JSON modules */
      2 
      3 import { fib } from "./fib_module.js";
      4 import msg from "./message.json";
      5 
      6 console.log("Hello World");
      7 console.log("fib(10)=", fib(10));
      8 console.log("msg=", msg);