RosettaCodeData/Task/Collections/Apex/collections-3.apex
2023-07-01 13:44:08 -04:00

3 lines
96 B
Text

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