Skip to content

Instantly share code, notes, and snippets.

@NetguruGist
Created October 31, 2015 14:50
Show Gist options
  • Save NetguruGist/d0883954f4372a6750aa to your computer and use it in GitHub Desktop.
Save NetguruGist/d0883954f4372a6750aa to your computer and use it in GitHub Desktop.
hiddengems7 swift
let objcPoint = XYZPoint(x: 3, y: 4)
let swiftPoint = objcPoint as Point // yeah
let swiftPoint = Point(x: 5, y: 6)
let objcPoint = swiftPoint as XYZPoint // hell yeah
let point: XYZPoint = Point(x: 7, y: 8) // mind = blown
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment