MyDemoScript.ps1

<#PSScriptInfo
.VERSION 1.0
.GUID 3bb10ee7-38c1-41b9-88ea-11119164fc19
.AUTHOR Muaddib
.DESCRIPTION Test script to see how powershell faces conflicting names!
#>



function Get-Greeting {
    param (
        [string]$Name
    )

    "Hello, $Name!"
}