23 lines
405 B
Bash
23 lines
405 B
Bash
#!/usr/bin/bash
|
|
|
|
# File: helloworld.bash
|
|
#
|
|
# Description: This file exemplifies printing 'Hello world!' in bash.
|
|
#
|
|
# Package: AniNIX::Foundation/HelloWorld
|
|
# Copyright: WTFPL
|
|
#
|
|
# Author: DarkFeather <darkfeather@aninix.net>
|
|
|
|
### <summary>
|
|
### Prints 'Hello world!'
|
|
### </summary>
|
|
function main() {
|
|
printf "Hello world!\n"
|
|
}
|
|
|
|
## MAIN
|
|
if [ `basename "$0"` == "helloworld.bash" ]; then
|
|
main
|
|
fi
|