RosettaCodeData/Task/Array-concatenation/PowerShell/array-concatenation.ps1
2026-04-30 12:34:36 -04:00

5 lines
50 B
PowerShell

$a = 1,2,3
$b = 4,5,6
$c = $a + $b
Write-Host $c