Skip to content

Instantly share code, notes, and snippets.

@thanhluu
Created May 9, 2016 13:28
Show Gist options
  • Save thanhluu/9fedf0b3a4a6110a4a881264b0e310b9 to your computer and use it in GitHub Desktop.
Save thanhluu/9fedf0b3a4a6110a4a881264b0e310b9 to your computer and use it in GitHub Desktop.
IntSwiftS1V2T2
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