Day 2
This commit is contained in:
parent
808cf54faf
commit
ad788f4758
6 changed files with 182 additions and 13 deletions
21
run
Executable file
21
run
Executable file
|
@ -0,0 +1,21 @@
|
|||
#!/usr/bin/env fish
|
||||
|
||||
if test (count $argv) -lt 2
|
||||
echo "$(status -f) [day] [part] ..."
|
||||
exit 1
|
||||
end
|
||||
|
||||
set input ""
|
||||
if test $argv[1] = "--with-input"
|
||||
set input "yes"
|
||||
set -e argv[1]
|
||||
end
|
||||
|
||||
set day $argv[1]
|
||||
set part $argv[2]
|
||||
|
||||
if test -n $input
|
||||
scala-cli run **.scala --main-class "Day$day" -- $part $argv[3..] < ./inputs/day$day.input
|
||||
else
|
||||
scala-cli run **.scala --main-class "Day$day" -- $part $argv[3..]
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue