12 lines
195 B
Text
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
|