diff options
author | Tom Smeding <tom@tomsmeding.com> | 2025-06-18 00:00:11 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2025-06-18 00:00:11 +0200 |
commit | d1b2e2c3a3cdaf49ff5e4bae6fe9b0612c3779c2 (patch) | |
tree | 38577e02839ac18244aa46b833da8957cbe9789e /src/Data.hs | |
parent | 2b1a40b5933b8b0dceaae744e5b70cb604822c9d (diff) |
Tests pass, should check if output is sensible
Diffstat (limited to 'src/Data.hs')
-rw-r--r-- | src/Data.hs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Data.hs b/src/Data.hs index e86aaa6..e6978c8 100644 --- a/src/Data.hs +++ b/src/Data.hs @@ -8,12 +8,13 @@ {-# LANGUAGE StandaloneDeriving #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators #-} -module Data (module Data, (:~:)(Refl)) where +module Data (module Data, (:~:)(Refl), If) where import Data.Functor.Product import Data.GADT.Compare import Data.GADT.Show import Data.Some +import Data.Type.Bool (If) import Data.Type.Equality import Unsafe.Coerce (unsafeCoerce) @@ -184,3 +185,8 @@ instance Applicative Bag where instance Semigroup (Bag t) where (<>) = BTwo instance Monoid (Bag t) where mempty = BNone + +data SBool b where + SF :: SBool False + ST :: SBool True +deriving instance Show (SBool b) |