6 lines
71 B
Bash
6 lines
71 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# help : print "Hello, World!" string
|
||
|
|
||
|
echo "Hello, World!"
|