Files
bshell/doc/sample/function.bshell
T

7 lines
85 B
Plaintext
Raw Normal View History

func test-function($name) {
echo "Hello, $name!"
}
$x = "Jonh"
test-function $x