RosettaCodeData/Task/Collections/Elena/collections-2.elena

6 lines
239 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
//Create and initialize ArrayList
2019-09-12 10:33:56 -07:00
var myAl := new system'collections'ArrayList().append:"Hello".append:"World".append:"!";
2016-12-05 22:15:40 +01:00
//Create and initialize List
2019-09-12 10:33:56 -07:00
var myList := new system'collections'List().append:"Hello".append:"World".append:"!";