gash/tests/60-function.sh

9 lines
63 B
Bash

foo () {
echo $1
}
echo before
foo bar
foo baz
echo after