doc: sample: add simple function example script

This commit is contained in:
2026-05-30 19:54:06 +01:00
parent 0697d889c5
commit afab5343c4
+6
View File
@@ -0,0 +1,6 @@
func test-function($name) {
echo "Hello, $name!"
}
$x = "Jonh"
test-function $x