about summary refs log tree commit diff stats
path: root/templates/shell/src/main.sh
blob: 4c4c836e52290208e63dffc397abd74fd8abcd6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env dash

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="2.1.2" . %SHELL_LIBRARY_PATH

# Both are used in `version`
# shellcheck disable=2034
AUTHORS="Benedikt Peetz"
# shellcheck disable=2034
YEARS="2024"

printf "Hello World!\n\n"

# Show off the library provided version function
version

# vim: ft=sh