not : Bool -> Bool
Returns Bool.False when given Bool.True, and vice versa. This is
equivalent to the logic NOT
gate. The operator ! can also be used as shorthand for Bool.not.
expect Bool.not(Bool.False) == Bool.True
expect !Bool.False == Bool.True