2 lines
135 B
PowerShell
2 lines
135 B
PowerShell
$say = {param ([string]$Exclamation, [string]$Subject) "$Exclamation, $Subject!"}
|
|
& $say -Exclamation "Goodbye" -Subject "cruel world"
|