PowerShell - hello-world

This commit is contained in:
Xevion
2021-11-26 00:59:55 -06:00
parent 9676e3704d
commit e02f2ceabf
8 changed files with 155 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
function Get-HelloWorld {
<#
.SYNOPSIS
Outputs "Hello, World!"
.DESCRIPTION
Output "Hello, World!".
.EXAMPLE
Get-HelloWorld
#>
return "Hello, World!"
}