Prelude-v21.1.0
Returns True if a number is odd and returns False otherwise
True
False
odd 3 ≡ True
odd 0 ≡ False
--| Returns `True` if a number is odd and returns `False` otherwiselet odd : Natural → Bool = Natural/oddlet example0 = assert : odd 3 ≡ Truelet example1 = assert : odd 0 ≡ Falsein odd