Created
January 24, 2015 20:42
-
-
Save kineticz/d468b92628b65e734214 to your computer and use it in GitHub Desktop.
Why is dorun necessary here?
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 print-row [row] | |
| (println (apply str (map :glyph row)))) | |
| (defn print-world [world] | |
| (dorun (map print-row (:tiles world)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment