9 lines
75 B
Bash
9 lines
75 B
Bash
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
main() {
|
|
echo 'Hello world :)'
|
|
}
|
|
|
|
main "$@"
|