7 lines
127 B
Plaintext
7 lines
127 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
year=$1
|
||
|
day=$2
|
||
|
|
||
|
mcs -out:$year/$day/problem.exe $year/$day/problem.cs && time mono $year/$day/problem.exe
|