RosettaCodeData/Task/Conditional-structures/PicoLisp/conditional-structures-2.l

8 lines
324 B
Text
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
(when (condition) # If the condition evaluates to non-NIL
(then-do-this) # Then execute tall following expressions
(and-more) )
(unless (condition) # If the condition evaluates to NIL
(then-do-this) # Then execute all following expressions
(and-more) )