RosettaCodeData/Task/Collections/Apex/collections-3.apex
2016-12-05 23:44:36 +01:00

3 lines
96 B
Text

String[] colors = new List<String>();
List<String> colors = new String[1];
colors[0] = 'Green';