Skip to content

Instantly share code, notes, and snippets.

@mikebuss
Created November 4, 2018 00:59
Show Gist options
  • Save mikebuss/a700ec72138cf1a02fff6138720aab8e to your computer and use it in GitHub Desktop.
Save mikebuss/a700ec72138cf1a02fff6138720aab8e to your computer and use it in GitHub Desktop.
lazy-var-instance-var.swift
lazy var players: [String] = self.initialPlayers()
func initialPlayers() -> [String] {
var players = ["John Doe"]
return players
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment