shithub: MicroHs

Download patch

ref: 1b48032192d6315b42e03be3eaeb767dfb8351fe
parent: 25b9d053656658307266ba0e8e6ed6bd2a58ab60
author: Lennart Augustsson <lennart@augustsson.net>
date: Thu Sep 26 13:33:21 EDT 2024

Simplify.

--- a/lib/Data/TypeLits.hs
+++ b/lib/Data/TypeLits.hs
@@ -4,8 +4,10 @@
   KnownNat(..),
   KnownSymbol(..),
   ) where
+import Prelude()
 import Primitives
-import Prelude
+import Data.Char_Type
+import Data.Integer
 
 class KnownNat (n :: Nat) where
   natVal :: forall (proxy :: Nat -> Type) . proxy n -> Integer