Skip to content

Instantly share code, notes, and snippets.

@haiiro-shimeji
Last active December 10, 2015 14:49
Show Gist options
  • Save haiiro-shimeji/4450006 to your computer and use it in GitHub Desktop.
Save haiiro-shimeji/4450006 to your computer and use it in GitHub Desktop.
last' でした^^;;;
last' :: [a] -> a
last' (x:[]) = x
last' (x:xs) = last' xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment