RosettaCodeData/Task/Rate-counter/EasyLang/rate-counter.easy
2024-03-06 22:25:12 -08:00

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