mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-08 00:07:00 -06:00
PowerShell - hello-world
This commit is contained in:
14
powershell/hello-world/HelloWorld.ps1
Normal file
14
powershell/hello-world/HelloWorld.ps1
Normal file
@@ -0,0 +1,14 @@
|
||||
function Get-HelloWorld {
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Outputs "Hello, World!"
|
||||
|
||||
.DESCRIPTION
|
||||
Output "Hello, World!".
|
||||
|
||||
.EXAMPLE
|
||||
Get-HelloWorld
|
||||
#>
|
||||
|
||||
return "Hello, World!"
|
||||
}
|
||||
Reference in New Issue
Block a user