Skip to content

Instantly share code, notes, and snippets.

@benjic
Created February 27, 2015 02:57
Show Gist options
  • Save benjic/90819e8ba4a4c98a8fdd to your computer and use it in GitHub Desktop.
Save benjic/90819e8ba4a4c98a8fdd to your computer and use it in GitHub Desktop.
reverseList :: [a] -> [a]
reverseList [] = []
reverseList a = last a : reverseList (init a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment