aboutsummaryrefslogtreecommitdiff
path: root/02_library_modularized/program.mjs
blob: 5fc3fcd085573b1932a6ffe14d6f280824991ae9 (plain)
1
2
3
4
5
6
import MyLibrary from "./build/library.mjs";

var myLibraryInstance = await MyLibrary();

const result = myLibraryInstance._multiply(6, 7);
console.log("The answer is " + result);

Generated with cgit - Back to sebastiano.tronto.net