Private/Show-PwshValue.ps1

Function Show-PwshValue {
    param(
        [Parameter(Mandatory = $true)]
        [string]
        $ThisParameter
    )
    $message = "This is the value of the parameter {0}" -f $ThisParameter
    Write-Host $message
}