get tail of list haskell code example
Example 1: last element of list haskell
list = [1, 2, 3, 4]
last [a] -> a
last [x] = x
last (_:xs) = last xs
last list -- 4
Example 2: haskell get last element of list
list = [1,2,3,4,5]
last list -- returns 5
Example 3: get tail of list haskell
list = [1, 2, 3, 4]
tail :: [a] -> [a]
tail [] = []
tail (_:xs) = xs