Skip to content

Instantly share code, notes, and snippets.

@tarynsauer
Last active August 29, 2015 13:56
Show Gist options
  • Save tarynsauer/9176483 to your computer and use it in GitHub Desktop.
Save tarynsauer/9176483 to your computer and use it in GitHub Desktop.
(def player-types (atom []))
(defn update-player-types [player-type]
(swap! player-types conj player-type))
(update-player-types "human")
(update-player-types "computer")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment