3 lines
70 B
PowerShell
3 lines
70 B
PowerShell
function Greeting ($Name = "Nobody") {
|
|
Write-Host Hello, $Name!
|
|
}
|