6 lines
116 B
Plaintext
6 lines
116 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
year=$1
|
||
|
day=$2
|
||
|
|
||
|
bin/fasm $year/$day/problem.asm $year/$day/problem && time ./$year/$day/problem
|