RosettaCodeData/Task/Array-concatenation/PowerShell/array-concatenation.psh

6 lines
50 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
$a = 1,2,3
$b = 4,5,6
$c = $a + $b
Write-Host $c