RosettaCodeData/Task/Loops-Do-while/NewLISP/loops-do-while.l

4 lines
63 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(let ((i 0))
(do-until (= 0 (% i 6))
(println (++ i))))