FILE="readme.txt"

if [ ! -f ${FILE} ]; then
    echo "Failed to find readme.txt, check that file exists and is named correctly."
    exit 0
fi

zip -r p3-submission.zip justfile *.h *.c *.txt
