Created
May 9, 2016 13:28
-
-
Save thanhluu/9fedf0b3a4a6110a4a881264b0e310b9 to your computer and use it in GitHub Desktop.
IntSwiftS1V2T2
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
import UIKit | |
struct Point { | |
let x: Int | |
let y: Int | |
} | |
struct Map { | |
static let origin: Point = Point(x: 0, y: 0) | |
} | |
Map.origin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment