Files
bshell/doc/sample/simple.bshell
T
2026-05-02 12:52:32 +01:00

9 lines
189 B
Plaintext

func test-function($name) {
echo "Hello, $name!"
}
# Example of instantiating an FX runtime object.
$obj = new-object -type-name fx.string -arguments "John Doe"
test-function -name $obj