Skip to content

Instantly share code, notes, and snippets.

@kineticz
Created January 24, 2015 19:22
Show Gist options
  • Select an option

  • Save kineticz/c8f5c196caec8cb402d8 to your computer and use it in GitHub Desktop.

Select an option

Save kineticz/c8f5c196caec8cb402d8 to your computer and use it in GitHub Desktop.
;; 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