Files
bshell/doc/sample/simple.bshell
T

15 lines
276 B
Plaintext

func test-function($name) {
echo "Hello, $name! $(2 + 4 + 2) wow"
}
# Example of instantiating an FX runtime object.
$obj = new-object -type-name fx.string -arguments "John Doe"
$hash = @{
1 = 'one'
2 = 'two'
'three' = 3
}
test-function -name $obj