Skip to content

Instantly share code, notes, and snippets.

@mikebuss
Created November 4, 2018 01:01
Show Gist options
  • Save mikebuss/a01890e1cb5d8616613d8530eba95845 to your computer and use it in GitHub Desktop.
Save mikebuss/a01890e1cb5d8616613d8530eba95845 to your computer and use it in GitHub Desktop.
lazy-person.swift
class Person {
var name: String
lazy var personalizedGreeting: String = {
return "Hello, \(self.name)!"
}()
init(name: String) {
self.name = name
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment