Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 205 Bytes

README.md

File metadata and controls

11 lines (10 loc) · 205 Bytes

Dictionaries

// Dictionary
var occupations = [
    "Malcolm": "Captain",
    "kaylee": "Mechanic"
]
occupations["Jayne"] = "Public Relations"
var emptyDictionary = Dictionary<String, Float>()