diff --git a/c/test.sh b/c/test.sh index 0fa32a9..c9da15b 100755 --- a/c/test.sh +++ b/c/test.sh @@ -1,3 +1,14 @@ #!/bin/bash +echo "### Compiling..." gcc helloworld.c -o helloworld -./helloworld \ No newline at end of file +gcc echo.c -o echo + +echo "### Hello World:" +./helloworld + +echo "### Echo:" +./echo Word! + +echo "### Cleaning up..." +rm helloworld +rm echo \ No newline at end of file