RosettaCodeData/Task/Loops-While/Objeck/loops-while.objeck

6 lines
59 B
Plaintext

i := 1024;
while(i > 0) {
i->PrintLine();
i /= 2;
};