Last active
March 19, 2017 13:30
-
-
Save deque-blog/335a43c80954a9db9318f2b1bb277432 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 swap-game! | |
[update-fn & args] | |
(apply swap! app-state update :game update-fn args)) | |
(defn toggle-help! | |
[] | |
(swap! app-state update :help not)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment