RosettaCodeData/Task/Collections/Elena/collections-2.elena
2019-09-12 10:33:56 -07:00

5 lines
239 B
Text

//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:"!";