not
logically inverts the truthiness of the provided form
Usage:
(not form)
Return #f (false) if the provided form is truthy, otherwise will return #t (true).
An Example
(not "hello")
This will return the boolean #f (false) because the value “hello” is truthy.