Explorar o código

exercise 3.3: isXorY

George C. Privon %!s(int64=2) %!d(string=hai) anos
pai
achega
82b7a0e804
Modificáronse 1 ficheiros con 8 adicións e 0 borrados
  1. 8 0
      03-typesandentities/exercises/ex3.3.hs

+ 8 - 0
03-typesandentities/exercises/ex3.3.hs

@@ -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