Skip to content

Instantly share code, notes, and snippets.

@vialyx
Created February 19, 2018 10:07
Show Gist options
  • Save vialyx/180074d7ad111f770b03344577130b4f to your computer and use it in GitHub Desktop.
Save vialyx/180074d7ad111f770b03344577130b4f to your computer and use it in GitHub Desktop.
protocol NameType {
var fullName: String { get }
}
struct User: NameType {
var fullName: String
var note = ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment