6 lines
65 B
Bash
6 lines
65 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
HW="Hello, World!"
|
||
|
printf "Jello %s\n" "$HW"
|
||
|
exit 0
|