ztlevi
6/13/2017 - 10:02 PM

if

if

(if condition
    then
  else)

(defun my-max (a b) 
  (if (> a b) 
      a b)) 
(my-max 3 4)  ; =>4