Created
January 24, 2015 19:22
-
-
Save kineticz/c8f5c196caec8cb402d8 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
| ;; Accessing / indexing 2d vectors in clojure | |
| (def tiles [[1 2 3] [4 5 6]]) | |
| (tiles 1) | |
| ((tiles 1) 2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment