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

5 lines
170 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
// Create an empty list of String
List<String> my_list = new List<String>();
// Create a nested list
List<List<Set<Integer>>> my_list_2 = new List<List<Set<Integer>>>();