Dictionaries
variable : counts { dictionary type : string int } { dictionary new : string int }
dictionary set : counts "apple" 3
variable : apple string { dictionary get : counts "apple" }Dictionary<string, int> counts = new Dictionary<string, int>();
counts["apple"] = 3;
string apple = counts["apple"];counts = {}
counts["apple"] = 3
apple = counts["apple"]variable start : counts { dictionary type : string int } { dictionary new start : string int }
dictionary pair : "apple" 3 ,
dictionary pair : "banana" 2
dictionary new endLast updated