From cf4815901f57c56d53136ce598a9c23449039fe8 Mon Sep 17 00:00:00 2001 From: eslopfer Date: Wed, 4 Jan 2023 07:57:23 +0000 Subject: [PATCH] feat(plus): add solution --- sh/tests/solutions/plus.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 sh/tests/solutions/plus.sh 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