RosettaCodeData/Task/Animation/MiniScript/animation.mini
2023-07-01 13:44:08 -04:00

12 lines
195 B
Text

clear
text.inverse = true
s = "Hello World! "
while not key.available
text.row = 12
text.column = 15
print " " + s + " "
wait 0.1
s = s[-1] + s[:-1]
end while
text.inverse = false
key.clear