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