Skip to content

Instantly share code, notes, and snippets.

@fronx
Created August 2, 2011 10:31
Show Gist options
  • Select an option

  • Save fronx/1119987 to your computer and use it in GitHub Desktop.

Select an option

Save fronx/1119987 to your computer and use it in GitHub Desktop.
(conj `(1 1) 2)
; => (2 1 1)
(conj [1 1] 2)
; => [1 1 2]
;;
(cons 2 `(1 1))
; => (2 1 1)
(cons 2 [1 1])
; => (2 1 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment