1 2 3 4 5 6 7 8 9 10 11 12
{-# LANGUAGE Haskell2010 #-} module Example where -- | Example use. -- -- >>> split 1 -- () -- -- >>> split 2 -- () split :: Int -> () split _ = ()