15 lines
189 B
Text
15 lines
189 B
Text
color 700
|
|
on animate
|
|
clear
|
|
rad += 0.2
|
|
move 50 50
|
|
circle rad
|
|
if rad > 50
|
|
rad = 0
|
|
.
|
|
t = systime
|
|
if t0 > 0
|
|
print 1000 * (t - t0) & " ms"
|
|
.
|
|
t0 = t
|
|
end
|