created template for easy setup

This commit is contained in:
Baipyrus 2023-12-08 09:36:57 +01:00
parent ee4aabf3a0
commit 311b1e8d24

8
template.js Normal file
View File

@ -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`);