wiki/notebook/assets/challenges.exercism.bash/hello-world.sh
2022-11-23 17:56:44 +08:00

7 lines
60 B
Bash
Executable File

#!/usr/bin/env bash
main() {
echo "Hello, World!"
}
main