haskell get firs element of list with value code example
Example: first element in list haskell
list = [1, 2, 3]
head :: [a] -> a
head (x:_) = x
head list -- 1
list = [1, 2, 3]
head :: [a] -> a
head (x:_) = x
head list -- 1