mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-06 07:14:56 -06:00
15 lines
204 B
PowerShell
15 lines
204 B
PowerShell
function Get-HelloWorld {
|
|
<#
|
|
.SYNOPSIS
|
|
Outputs "Hello, World!"
|
|
|
|
.DESCRIPTION
|
|
Output "Hello, World!".
|
|
|
|
.EXAMPLE
|
|
Get-HelloWorld
|
|
#>
|
|
|
|
return "Hello, World!"
|
|
}
|