RosettaCodeData/Task/Collections/Apex/collections-3.apex

4 lines
96 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
String[] colors = new List<String>();
List<String> colors = new String[1];
colors[0] = 'Green';