diff --git a/template.js b/template.js new file mode 100644 index 0000000..3a620a8 --- /dev/null +++ b/template.js @@ -0,0 +1,8 @@ +import { readFileSync } from "fs"; +const t0 = performance.now(); + +const input = readFileSync("input.txt").toString(); +console.log(input); + +const t1 = performance.now(); +console.log(`Runtime: ${t1 - t0}ms`);