RosettaCodeData/Task/Animation/MiniScript/animation.mini

13 lines
195 B
Plaintext

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