6 lines
90 B
Haskell
6 lines
90 B
Haskell
module Warnings (zoo) where
|
|
|
|
zoo :: [a] -> ()
|
|
zoo x = case x of
|
|
[] -> undefined
|