11 lines
357 B
Plaintext
11 lines
357 B
Plaintext
# shellcheck shell=bash
|
|
# arguments of the form X="$I" are parsed as parameters X of type string
|
|
msg="$1"
|
|
dflt="${2:-default value}"
|
|
|
|
# WARN; Cannot download dependency modules from internet during sandbox testing!
|
|
|
|
# the last line of the stdout is the return value
|
|
# unless you write json to './result.json' or a string to './result.out'
|
|
echo "Hello $msg"
|