RosettaCodeData/Task/Conditional-structures/XLISP/conditional-structures-3.l

5 lines
206 B
Common Lisp

(cond
((eq s "Rosetta Code") "Chrestomathy site")
((> n 37) "Some other appropriate value, presumably")
(t "If you're seeing me, s wasn't equal to Rosetta Code and n must have been 37 or below") )