Skip to content

Instantly share code, notes, and snippets.

@qoelet
Created July 31, 2013 02:57
Show Gist options
  • Save qoelet/6118956 to your computer and use it in GitHub Desktop.
Save qoelet/6118956 to your computer and use it in GitHub Desktop.
Implementing last function
-- file: myLast.hs
myLast :: [a] -> a
myLast x = head (reverse x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment