RosettaCodeData/Task/Conditional-structures/PicoLisp/conditional-structures-3.l
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

6 lines
361 B
Common Lisp

(if2 (condition1) (condition2) # If both conditions evaluate to non-NIL
(expression-both) # Then execute this expression
(expression-first) # Otherwise this for the first
(expression-second) # or this the second condition.
(expression-none) # If both are NIL, all following expressions
(and-more) )