ZVON > References > Haskell reference
| Indexes | Syntax | >> Prelude << | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random

Module: Prelude
Function: not
Type: Bool -> Bool
Description: boolean not
Related: (&&), all, and, any, elem, notElem, or, (||)
Keywords: boolean

Example 1

Input: not True

Output: False

Example 2

Input: not (1>2)

Output: True