@@ -0,0 +1,8 @@
+-- Exercise 5.5
+-- George C. Privon
+-- 2024-07-20
+
+null' :: [a] -> Bool
+null' ys = if length ys == 0
+ then True
+ else False