aboutsummaryrefslogtreecommitdiff
path: root/samples/PowerShell/hello.psm1
blob: 3db82f0187523b90b315b623ade3461b382f0231 (plain)
1
2
3
4
5
# Hello World powershell module

function hello() {
  Write-Host 'Hello World'
}