i will keep maintaining the bash one too for people who dont want to install a c compiler Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
9 lines
75 B
Bash
Executable file
9 lines
75 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
main() {
|
|
echo 'Hello world :)'
|
|
}
|
|
|
|
main "$@"
|