1 2 3 4 5 6
module System.Utility.H9Clock.Type (Rectangle(..)) where data Rectangle = Rectangle { min :: (Int, Int) , max :: (Int, Int) } deriving (Show, Eq)