RosettaCodeData/Task/Assertions/PicoLisp/assertions-2.l
2023-07-01 13:44:08 -04:00

4 lines
102 B
Text

(let N 41
(unless (= N 42) (quit "Incorrect N" N)) ) # 'quit' throws an error
41 -- Incorrect N
?