RosettaCodeData/Task/Short-circuit-evaluation/PicoLisp/short-circuit-evaluation.l

15 lines
190 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
(de a (F)
(msg 'a)
F )
(de b (F)
(msg 'b)
F )
(mapc
'((I J)
(for Op '(and or)
(println I Op J '-> (Op (a I) (b J))) ) )
'(NIL NIL T T)
'(NIL T NIL T) )