RosettaCodeData/Task/Loops-While/GML/loops-while.gml

7 lines
73 B
Plaintext

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