bsc-leon-vatthauer/slides/code-examples/example.hs

7 lines
103 B
Haskell
Raw Normal View History

2024-01-03 19:51:04 +01:00
hd :: [a] -> a
hd [] = error "empty list"
hd (x : _) = x
main :: IO ()
main = print (hd []::[String])