RosettaCodeData/Task/Loops-While/PHL/loops-while.phl

6 lines
62 B
Plaintext

var i = 1024;
while (i > 0) {
printf("%i\n", i);
i = i/2;
}