RosettaCodeData/Task/Loops-While/Zkl/loops-while.zkl

2 lines
39 B
Plaintext

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