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

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

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