From 7ab6471c75219ff29f32c26048e2a46ff7bcefc1 Mon Sep 17 00:00:00 2001 From: xecarlox94 Date: Sun, 20 Oct 2024 22:02:08 +0100 Subject: [PATCH] fixing haskell API issue --- haskell/app/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haskell/app/Main.hs b/haskell/app/Main.hs index 432f862..b682144 100644 --- a/haskell/app/Main.hs +++ b/haskell/app/Main.hs @@ -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)