@@ -0,0 +1,20 @@
#!/usr/bin/env sh
if [ $1 = "build" ]; then
make main -B
elif [ $1 = "run" ]; then
make main
./output/main
elif [ $1 = "debug" ]; then
echo "Debugging"
elif [ $1 = "clean" ]; then
rm -rf ./output/
else
echo "Invalid command."
fi
The note is not visible to the blocked user.