6 lines
67 B
AppleScript
6 lines
67 B
AppleScript
|
|
set i to 1024
|
||
|
|
repeat while i > 0
|
||
|
|
log i
|
||
|
|
set i to i / 2
|
||
|
|
end repeat
|