Array concatenation: Difference between revisions

Content added Content deleted
(Adds slope example)
(→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)")
Line 4,311: Line 4,311:
</syntaxhighlight>
</syntaxhighlight>


=={{header|Vlang}}==
=={{header|V (Vlang)}}==
V uses a '''<<''' operator for array concatenation. Destination array needs to be mutable.
V (Vlang) uses a '''<<''' operator for array concatenation. Destination array needs to be mutable.


<syntaxhighlight lang="go">// V, array concatenation
<syntaxhighlight lang="go">// V, array concatenation