In Common Lisp, if is the simplest conditional construct. It has the form (if test then [else]) and is evaluated to then if test is true and else otherwise. The else part can be omitted.
(if (> 3 2)
"Three is bigger!"
"Two is bigger!")
;;=> "Three is bigger...