Skip to content

Instantly share code, notes, and snippets.

@funrep
Created October 22, 2012 17:31
Show Gist options
  • Save funrep/3932806 to your computer and use it in GitHub Desktop.
Save funrep/3932806 to your computer and use it in GitHub Desktop.
lastButOne :: [a] -> a
lastButOne xs =
if xs == [] then "Empty list :P"
if (length xs) == 1 then "You need more items in your list :P"
else last (init xs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment