Added template for dart

This commit is contained in:
2023-11-28 15:15:16 +00:00
parent c0b56886c0
commit af2687fe11
12 changed files with 531 additions and 13 deletions

20
run_day Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
if [ -z "$1" ]; then
echo "Expected year"
exit;
fi
if [ -z "$2" ]; then
echo "Expected day"
exit;
fi
if [ $2 > 25 ]; then
echo "Invalid day"
exit;
fi
cd $1
./run_day $2