t and nil
There are distinguished symbols t and nil
Variables named by the symbols t and nil ALWAYS evaluate to themselves
- t evaluates to t
- nil evaluates to nil
nil is equivalent to the empty list: ()
nil is intended to represent Boolean FALSE. Any value other than nil (e.g., t) represents Boolean TRUE.