Initialization of dictionaries in Swift

//Dictionary<String, String>
let languages = ["ru" : "russian""en" : "english"]

//Dictionary<Int, String>
let numbers: Dictionary<IntString> = [1"one"2"two"3"three"]

//Dictionary<Int, Employee>
let employees = [
    1Employee(firstName: "Pavlov", lastName: "Anton"),
    2Employee(firstName: "Kirienko", lastName: "Elena")]