The special symbol T represents the value true in Common Lisp, while the special symbol NIL represents false:
CL-USER> (= 3 3)
T
CL-USER> (= 3 4)
NIL
They are called “Constant Variables” (sic!) in the standard, since they are variables whose value cannot be modified. As a consequence, y...