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

__'Square'__ pretty printed.
-}
module Math.FiniteCategories.Square.Example
(
    main
)
where
    import Data.WeakSet.Safe
    
    import Math.FiniteCategories.Square
    import Math.IO.PrettyPrint
    import Math.FiniteCategory
    
    
    -- | __'Square'__ pretty printed.

    main :: IO ()
    main :: IO ()
main = do
        String -> IO ()
putStrLn String
"Start of Math.FiniteCategories.Square.Example"
        String -> IO ()
putStrLn (String -> IO ()) -> String -> IO ()
forall a b. (a -> b) -> a -> b
$  Square -> 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 Square
Square 
        String -> IO ()
putStrLn String
"End of Math.FiniteCategories.Square.Example"