aoc_omni/c3/bin/run
2024-11-19 20:32:23 -05:00

8 lines
171 B
Bash
Executable File

#!/usr/bin/env bash
year=$1
day=$2
../c3/bin/c3c compile -o $year/$day/problem $year/$day/problem.c3 && \
time (cat ../data/$year/$day/input.txt | ./$year/$day/problem)