4 lines
66 B
Bash
4 lines
66 B
Bash
|
function create_hello_world {
|
||
|
echo 'Hello, World!' > hello.txt
|
||
|
}
|