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

4 lines
216 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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()};