packages feed

FiniteCategories-0.6.0.0: test/FiniteCategoryExamples/FinCat.hs

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

An example of 'FullSubcategory' of __'FinCat'__ pretty printed.
-}
module FiniteCategoryExamples.FinCat
(
    test
)
where
    import Data.WeakSet.Safe
    
    import Math.Categories
    import Math.FiniteCategories.Examples
    import Math.IO.PrettyPrint
    import Math.FiniteCategory

    
    -- | An example of 'FullSubcategory' of __'FinCat'__ pretty printed.
    test :: IO ()
    test = do
        putStrLn "Start of FiniteCategoryExamples.FinCat"
        putStrLn $ pprintFiniteCategory 1 exampleFinCatNumbers
        putStrLn "End of FiniteCategoryExamples.FinCat"