aoc/2022/d3/run.sh

11 lines
229 B
Bash
Raw Normal View History

2022-12-03 06:09:30 +00:00
#!/usr/bin/env sh
# Runs deno at src/d3_deno.ts with arguments ["example.txt"]
echo "example.txt"
deno run --allow-read src/d3_deno.ts "example.txt"
echo "submission.txt"
deno run --allow-read src/d3_deno.ts "submission.txt"