Test.HelloWorld.psm1

function Write-HelloWorld {
    <#
    .NOTES
    ===========================================================================
    Created by: JetStream Software Inc
    ===========================================================================

    .EXAMPLE
    Write-HelloWorld
#>

    [CmdletBinding()]
    param()
    Process {
        Write-Output "Hello World!"
    }
}