Advertisement
Guest User

Untitled

a guest
Oct 10th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Gabe Schoenbach
  2.  
  3. module Functions where
  4.   import Prelude hiding (even)
  5.  
  6.   --Exercise 4.1
  7.  
  8.   -- | The even predicate defined as a composition of two sections.
  9.   even :: Integral n => n -> Bool
  10.   even = (== 0) . (`mod` 2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement