5 lines
175 B
Text
5 lines
175 B
Text
num = 1024
|
|
while num > 1 # blz will automatically cast num to a fraction when dividing 1/2, so this is necessary to stop an infinite loop
|
|
print(num)
|
|
num = num / 2
|
|
end
|