Skip to content

Instantly share code, notes, and snippets.

@mattcomi
Last active April 19, 2016 04:00
Show Gist options
  • Save mattcomi/83c882b099a6e25baa57891468372bf9 to your computer and use it in GitHub Desktop.
Save mattcomi/83c882b099a6e25baa57891468372bf9 to your computer and use it in GitHub Desktop.
struct Social {
var twitter: String
}
struct Person {
var name: String
var age: Int
var social: Social
}
let matt = Person(name: "Matt", age: 32, social: Social(twitter: "@mattcomi"))
print(matt)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment