@@ -0,0 +1,8 @@
+-- Exercise 3.3
+-- George C. Privon
+-- 2023-09-05
+
+isXorY :: Char -> Bool
+isXorY x = if x == 'X' || x == 'Y'
+ then True
+ else False