This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn next-turn | |
"Apply the transtion to the current turn, yielding a new turn" | |
[turn transition] | |
(-> turn | |
(update :board transition/apply-transition transition) | |
(update :scores scores/update-scores transition) | |
(with-next-player))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment