
(print 
  (cond (= 0 1) "I'm paired with a false expression and I don't evalute.."
        (= 1 1) "I'm the first expression paired with a true expression!"
        (= 2 2) "I don't evalute even though I'm also paired with true ;_;"
        :else   "I evaluate if no other boolean expressions evaluate to true"))