Files

15 lines
276 B
Plaintext
Raw Permalink Normal View History

2026-05-02 12:52:32 +01:00
func test-function($name) {
2026-05-10 14:20:08 +01:00
echo "Hello, $name! $(2 + 4 + 2) wow"
2026-05-02 12:52:32 +01:00
}
# Example of instantiating an FX runtime object.
$obj = new-object -type-name fx.string -arguments "John Doe"
2026-05-10 14:20:08 +01:00
$hash = @{
1 = 'one'
2 = 'two'
'three' = 3
}
2026-05-02 12:52:32 +01:00
test-function -name $obj