From fae67f44487a975ba410344269631e526e7cfe3e Mon Sep 17 00:00:00 2001 From: ilsix Date: Sun, 7 Apr 2024 01:47:16 +0200 Subject: [PATCH] Test C --- c/test.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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