module Example where

-- | Example use.
--
-- >>> split 1
-- ()
--
-- >>> split 2
-- ()
split :: Int -> ()
split _ = ()