Skip to content

Instantly share code, notes, and snippets.

@efremidze
Last active June 19, 2017 22:11
Show Gist options
  • Save efremidze/1ca66702c7662b549075a0401898c49e to your computer and use it in GitHub Desktop.
Save efremidze/1ca66702c7662b549075a0401898c49e to your computer and use it in GitHub Desktop.
Struct Convenience Initializer
struct Comment {
let text: String
let date: Date
static func make(_ text: String) -> Comment {
return Comment(text: text, date: Date())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment