1
0

223 B

logosub, language, title, code
logosub language title code
Software en Pattern matching Haskell

An example to determine the third element of a list, (with at least 3 elements):

third :: [a] -> a 
third (_:_:x:_) = x