diff options
author | Fernando Valverde <fdov88@gmail.com> | 2015-10-30 22:43:44 +0100 |
---|---|---|
committer | Fernando Valverde <fdov88@gmail.com> | 2015-10-30 22:43:44 +0100 |
commit | 9530122a1c956a25adb71bfd9cc1c516ff67d2f3 (patch) | |
tree | fae993e51edfee4273c2b3336c97111732579c95 /swift.html.markdown | |
parent | f0a4c88acfac9514aca6dd33e2d3f8c4d5e815dc (diff) |
Include MARK style and two collection declarations
Added MARK with separator and a couple of mutable explicit declarations of empty Array/Dictionary
Diffstat (limited to 'swift.html.markdown')
-rw-r--r-- | swift.html.markdown | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/swift.html.markdown b/swift.html.markdown index f451288d..1ca81bc2 100644 --- a/swift.html.markdown +++ b/swift.html.markdown @@ -25,6 +25,7 @@ import UIKit // Xcode supports landmarks to annotate your code and lists them in the jump bar // MARK: Section mark +// MARK: - Section mark with a separator line // TODO: Do something soon // FIXME: Fix this code @@ -128,6 +129,7 @@ shoppingList[1] = "bottle of water" let emptyArray = [String]() // let == immutable let emptyArray2 = Array<String>() // same as above var emptyMutableArray = [String]() // var == mutable +var explicitEmptyMutableStringArray: [String] = [] // same as above // Dictionary @@ -139,6 +141,7 @@ occupations["Jayne"] = "Public Relations" let emptyDictionary = [String: Float]() // let == immutable let emptyDictionary2 = Dictionary<String, Float>() // same as above var emptyMutableDictionary = [String: Float]() // var == mutable +var explicitEmptyMutableDictionary: [String: Float] = [:] // same as above // |