Skip to content

Instantly share code, notes, and snippets.

@marick
Created June 11, 2010 19:46
Show Gist options
  • Save marick/434942 to your computer and use it in GitHub Desktop.
Save marick/434942 to your computer and use it in GitHub Desktop.
(defn successor [cell]
(condp = (living-neighbor-count cell)
3 (vivified cell)
2 (if (living? cell)
(vivified cell)
(killed cell))
(killed cell))
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment