Public/Get-Hello.ps1

function Get-Hello {
    param([string] $name = "Friend")

    "Hello, $name! Welcome to WinPower!"
}