cond
Cond is a term used to denote a conditional construct in programming languages and logic. In Lisp family languages, cond is a built-in multi-branch conditional that selects among several possibilities based on tested conditions.
In Common Lisp and related dialects, a cond expression consists of a sequence of clauses. Each clause
Example in Scheme or Common Lisp: (cond ((< x 0) 'negative) ((= x 0) 'zero) (else 'positive)). This
Outside Lisp, cond is not a universal keyword, but the term remains a descriptive shorthand for conditional