Skip to content

Instantly share code, notes, and snippets.

@theblixguy
Last active March 25, 2019 15:49
Show Gist options
  • Save theblixguy/b7916c981d276328bf5037e7d9b26027 to your computer and use it in GitHub Desktop.
Save theblixguy/b7916c981d276328bf5037e7d9b26027 to your computer and use it in GitHub Desktop.
struct Point {
let x, y: Int
}
func createPoint() {
let point = Point(x: 0, y: 0)
}
createPoint()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment