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

5 lines
206 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
(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") )