RosettaCodeData/Task/Loops-Do-while/PicoLisp/loops-do-while-1.l

5 lines
76 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
(let Val 0
(loop
(println (inc 'Val))
(T (=0 (% Val 6))) ) )