RosettaCodeData/Task/Assertions/PicoLisp/assertions-3.l

6 lines
216 B
Plaintext

(let N 41
(unless (= N 42) (! setq N 42)) ) # '!' is a breakpoint
(setq N 42) # Manually fix the value
! # Hit ENTER to leave the breakpoint
-> 42