8 lines
53 B
Bash
8 lines
53 B
Bash
#!/bin/bash
|
|
|
|
main() {
|
|
echo "Hello World"
|
|
}
|
|
|
|
main
|