RosettaCodeData/Task/Loops-While/Inform-7/loops-while-1.inf
2023-10-02 18:11:16 -07:00

4 lines
69 B
INI

let N be 1024;
while N > 0:
say "[N][line break]";
let N be N / 2;