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

5 lines
216 B
Text

(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