Skip to content

Instantly share code, notes, and snippets.

@BeauNouvelle
Created August 6, 2018 06:14
Show Gist options
  • Save BeauNouvelle/d02b3e6fa6547da3c290faf0bca1c6d6 to your computer and use it in GitHub Desktop.
Save BeauNouvelle/d02b3e6fa6547da3c290faf0bca1c6d6 to your computer and use it in GitHub Desktop.
for x in 0..<size {
for y in 0..<size {
let randomState = arc4random_uniform(3)
let cell = Cell(x: x, y: y, state: randomState == 0 ? .alive : .dead)
cells.append(cell)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment