#260
conditionals-4
 

Difficulty:Basic
Topics:conditionals


You may have a multitude of possible paths
test not run
(let [x 5]
      (= :your-road (cond (= x __) :road-not-taken
                          (= x __) :another-road-not-taken
                          :else __)))


Code which fills in the blank: