ace/demo/docs/powershell.ps1

15 lines
235 B
PowerShell

# This is a simple comment
function Hello($name) {
Write-host "Hello $name"
}
$number = 1 + 2;
$number += 3
Write-Host Hello -name "World"
$an_array = @(1, 2, 3)
$a_hash = @{"something" = "something else"}
& notepad .\readme.md