diff --git a/C/scripts/build.sh b/C/scripts/build.sh index c83e08c..654271e 100644 --- a/C/scripts/build.sh +++ b/C/scripts/build.sh @@ -1,5 +1,7 @@ #Compiles the entire program then runs it, producing an executable. #C +printf "Running program...\n\n\n" if gcc $(find . -type f -name "*.c") ${CUSTOM_PARAMS} -o ${PROJECT_NAME}; then ./${PROJECT_NAME} -fi \ No newline at end of file +fi +printf "\n\n"