@@ -0,0 +1,12 @@
+-- Exercise 3.4
+-- George C. Privon
+-- 2023-09-05
+
+bagFee :: Bool -> Int
+bagFee x = if x
+ then 100
+ else 0
+bagFee2 :: Bool -> Int
+bagFee2 False = 0
+bagFee2 True = 100