{-| Module  : FiniteCategories
Description : __1__ pretty printed.
Copyright   : Guillaume Sabbagh 2022
License     : GPL-3
Maintainer  : guillaumesabbagh@protonmail.com
Stability   : experimental
Portability : portable

__1__ pretty printed.
-}
module Math.FiniteCategories.One.Example
(
    main
)
where
    import Math.FiniteCategories.One
    import Math.FiniteCategory
    import Math.IO.PrettyPrint
    
    
    -- | __'One'__ pretty printed.

    main :: IO ()
    main :: IO ()
main = do
        String -> IO ()
putStrLn String
"Start of Math.FiniteCategories.One.Example"
        String -> IO ()
putStrLn (String -> IO ()) -> String -> IO ()
forall a b. (a -> b) -> a -> b
$  One -> String
forall c m o.
(FiniteCategory c m o, Morphism m o, PrettyPrint c, PrettyPrint m,
 PrettyPrint o, Eq m, Eq o) =>
c -> String
pprintFiniteCategory One
One 
        String -> IO ()
putStrLn String
"End of Math.FiniteCategories.One.Example"