Skip to content

Instantly share code, notes, and snippets.

@6ewis
Created February 3, 2015 03:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 6ewis/f86d3c0721e79197712c to your computer and use it in GitHub Desktop.
Save 6ewis/f86d3c0721e79197712c to your computer and use it in GitHub Desktop.
(def second
(fn [list]
(nth `list 2)
)
) ;; i use it before and it worked now it doesnt. any thoughts on what could have happened?
;; so i expected to use it as such (second (1 2 3 4))
(def second
(fn [list]
(nth list 2)
)
); work fine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment