RosettaCodeData/Task/Loops-While/Zkl/loops-while.zkl
2017-09-25 22:28:19 +02:00

1 line
39 B
Text

n:=1024; while(n>0){println(n); n/=2;}