I have the following swift dictionary
var List = [
2543 : [ "book", "pen" ],
2876 : [ "school", "house"]
]
How can i access the array values ?
println(List[2543][0])
The above code gives error "could not find member subscript"
and it should print "book"