Last active
May 14, 2017 23:24
-
-
Save chriswebb09/327dc882cb5d8d191df079cad8ecf26e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Test { | |
var hello: [String: Int] = [:] | |
func test() { | |
hello[“one”] = 1 | |
hello[“one”] // 1 | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment