2 lines
81 B
PowerShell
2 lines
81 B
PowerShell
$say = {param ([string]$Subject) "Hello, $Subject!"}
|
|
& $say -Subject "my friend"
|