RosettaCodeData/Task/Loops-While/PARI-GP/loops-while.parigp
2023-07-01 13:44:08 -04:00

5 lines
39 B
Text

n=1024;
while(n,
print(n);
n/=2
);