aoc/2022/d3/src/d3_deno.ts

7 lines
202 B
TypeScript
Raw Normal View History

2022-12-03 06:09:30 +00:00
if(Deno.args.length < 1) {
throw Error("d3_deno.ts expects a single argument that points to AOC's day 3 input file");
}
const fileLoc = Deno.args[0];
const text = await Deno.readTextFile(fileLoc);