You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-basics-2022/07/Main.hs

19 lines
282 B

data A = True' | False'
deriving Show
data B = True'
foo :: A -> Integer
foo True' = 1
foo False' = 0
data P3 = P Bool A -- P (Bool x A)
data BigP = P1 Bool A | P2 Integer
deriving Show
bar :: BigP -> Integer
bar (P1 _ _) = 1
bar (P2 _) = 2
main = putStrLn "Hello world"