I want to use the condp clause but I dont know how to catch any unmatched clause. How do I do that?
(defn subst[id value W-lang]
(let [[type expr][(first W-lang)(rest W-lang)]]
(condp = type
'num (first expr)
'add expr
***** expr)))