Skip to content

Instantly share code, notes, and snippets.

@prajwalit
Created August 29, 2011 11:46
Show Gist options
  • Save prajwalit/1178239 to your computer and use it in GitHub Desktop.
Save prajwalit/1178239 to your computer and use it in GitHub Desktop.
Given a sequence return last item.
(defn get-last [vect]
(first (reverse (seq vect))))
(get-last [1 3 2])
(get-last '(1 3 2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment