Collections: Difference between revisions

m
m (→‎{{header|Wren}}: Changed to Wren S/H)
imported>Arakov
 
(One intermediate revision by the same user not shown)
Line 1,170:
<syntaxhighlight lang="elena">
//Create and initialize ArrayList
var myAl := new system'collections'ArrayList().append:("Hello").append:("World").append:("!");
//Create and initialize List
var myList := new system'collections'List().append:("Hello").append:("World").append:("!");
</syntaxhighlight>
 
Anonymous user