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

3 lines
216 B
Text

Map<String, String> country_currencies = new Map<String, String>();
Map<ID, Set<String>> m = new Map<ID, Set<String>>();
Map<String, String> MyStrings = new Map<String, String>{'a' => 'b', 'c' => 'd'.toUpperCase()};