Skip to content

Instantly share code, notes, and snippets.

@ilovejs
Created August 16, 2014 14:45
Show Gist options
  • Save ilovejs/411b000531a3c2f3d2ad to your computer and use it in GitHub Desktop.
Save ilovejs/411b000531a3c2f3d2ad to your computer and use it in GitHub Desktop.
haskell bootstrap code
module Main where
myLast :: [a] -> a
myLast [x] = x
myLast (_:xs) = myLast xs
--myLast' = foldr1 (const id)
main = do
print (myLast [1,3,4])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment