Browse Source

feat(plus): add solution

mobile-beta
eslopfer 1 year ago
parent
commit
cf4815901f
  1. 7
      sh/tests/solutions/plus.sh

7
sh/tests/solutions/plus.sh

@ -0,0 +1,7 @@
#!/bin/bash
# Add the two numbers
result=$(expr $1 + $2)
# Output the result
echo $result
Loading…
Cancel
Save