diff --git a/sh/tests/solutions/plus.sh b/sh/tests/solutions/plus.sh new file mode 100644 index 00000000..a526f7a7 --- /dev/null +++ b/sh/tests/solutions/plus.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# Add the two numbers +result=$(expr $1 + $2) + +# Output the result +echo $result