From d8c12b5418187cdcf3898a626566c30555d5c6ee Mon Sep 17 00:00:00 2001 From: George Thomas Date: Thu, 19 Feb 2026 14:09:30 +0000 Subject: [PATCH] Call struct function with different arguments --- haskell/exe/Main.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/haskell/exe/Main.hs b/haskell/exe/Main.hs index 1ef8c68..5cd845c 100644 --- a/haskell/exe/Main.hs +++ b/haskell/exe/Main.hs @@ -6,5 +6,6 @@ main :: IO () main = do hello "Haskell" helloStruct T{a = True, b = 42} + helloStruct T{a = False, b = maxBound} helloShape $ Circle 3.14 helloShape $ Rectangle 10.0 5.0