IF
IF is a special form that evaluates its first argument. If the result is NIL it skips its second argument and evaluates and returns its third element if any. If result of evaluating the first element was not NIL, it evaluates the second argument and returns that.
> (if (> x 2) (- x 1) (+ x 1))