Increment by 1
(1+ x) is the same as (+ 1 x). See +.
1+ is a Common Lisp function. See any Common Lisp documentation for more information.
Macro: 1+
(defmacro 1+ (x) (list '+ 1 x))