RosettaCodeData/Task/Collections/Elena/collections-2.elena
2024-03-06 22:25:12 -08:00

5 lines
245 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("!");