RosettaCodeData/Task/Spinning-rod-animation-Text/MiniScript/spinning-rod-animation-text-2.mini
2023-07-01 13:44:08 -04:00

7 lines
145 B
Text

while true
for c in "|/-\"
print c
wait 0.25
print char(27) + "[2A" // move cursor up 2 lines
end for
end while