Public/Push-PwshParamIntoOtherFunc.ps1

Function Push-PwshParamIntoOtherFunc {
    param(
        [Parameter(Mandatory = $true)]
        [string]
        $ThisParameter
    )
    Write-Host "Running Show-PwshValue..."
    Show-PwshValue -ThisParameter $ThisParameter
}