5 lines
239 B
Text
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:"!";
|