Array concatenation: Difference between revisions

imported>Belowdecent
({{header|Odin}})
imported>Belowdecent
Line 3,224:
y: [3]int = {4, 5, 6}
 
fmt.println( xy := slice.concatenate([][]int{x[:], y[:]}))
defer delete(xy)
 
fmt.println(xy)
 
}</syntaxhighlight>
 
Anonymous user