RosettaCodeData/Task/Loops-While/GML/loops-while.gml
2023-07-01 13:44:08 -04:00

6 lines
73 B
Text

i = 1024
while(i > 0)
{
show_message(string(i))
i /= 2
}