fixing haskell API issue

This commit is contained in:
2024-10-20 22:02:08 +01:00
parent 7855859c3a
commit 7ab6471c75

View File

@@ -196,7 +196,7 @@ data StdInput
instance Show StdInput where
show MkEmptyStdInput = ""
show (MkStdInputVal v) = show v
show (MkStdInputVal v) = v
type IOEitherError a = IO (Either Error a)