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