4 lines
98 B
Text
4 lines
98 B
Text
function map ([array] $a, [scriptblock] $s) {
|
|
$a | ForEach-Object $s
|
|
}
|
|
map (1..5) { $_ * $_ }
|