Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Not Expression

This is a logical operation applied to a boolean expressions. Using this block inverts the truth value. (i.e. a true statement becomes false, and vice versa).

For example, if we wanted to create the statement:

not (x and y)

We could use the following blocks:

Example of a not expression

Which would produce the following Essence Output:

! ( x /\ y  )