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