quickjs-tart

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

hello_module.js (130B)


      1 /* example of JS module */
      2 
      3 import { fib } from "./fib_module.js";
      4 
      5 console.log("Hello World");
      6 console.log("fib(10)=", fib(10));