Explorar o código

exercise 3.5: greaterThan50

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

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

@@ -0,0 +1,8 @@
+-- Exercise 3.5
+-- George C. Privon
+-- 2023-09-05
+
+greaterThan50 :: Integer -> Bool
+greaterThan50 x = if x > 50
+    then True
+    else False