2 lines
94 B
Text
2 lines
94 B
Text
|
|
zip3 @('a','b','c') @('A','B','C') @(1,2,3) | ForEach-Object {$_.Item1 + $_.Item2 + $_.Item3}
|