7 lines
85 B
Plaintext
7 lines
85 B
Plaintext
|
|
func test-function($name) {
|
||
|
|
echo "Hello, $name!"
|
||
|
|
}
|
||
|
|
|
||
|
|
$x = "Jonh"
|
||
|
|
test-function $x
|