Skip to content

Instantly share code, notes, and snippets.

@nolim1t
Created July 20, 2015 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nolim1t/7da055b2292dd00c72cc to your computer and use it in GitHub Desktop.
Save nolim1t/7da055b2292dd00c72cc to your computer and use it in GitHub Desktop.
Swift Dictionary Playground
var hdict : Dictionary<String,String> = ["Key": "Val"]
for (key: String, value: String) in hdict {
println("\(key) = \(value)")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment