RosettaCodeData/Task/Loops-While/EchoLisp/loops-while.echolisp

4 lines
98 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
(set! n 1024)
(while (> n 0) (write n) (set! n (quotient n 2)))
1024 512 256 128 64 32 16 8 4 2 1