mirror of https://github.com/kurisufriend/rolling
parent
64fc07d08f
commit
39200e80c5
@ -0,0 +1,12 @@ |
||||
import os |
||||
import time |
||||
tags = ["the", "agile", "rust-colored", "fox", "leaped", "above", "the", "moon"] |
||||
for o in range(0, len(tags)): |
||||
tag = tags[o] |
||||
for i in range(0, (len(tag) + 1) * 2): |
||||
os.system("clear") |
||||
if (i > len(tag) + 1): |
||||
print(tag[:(((len(tag) + 1) * 2) - i)]) |
||||
else: |
||||
print(tag[:i]) |
||||
time.sleep(.1) |
Loading…
Reference in new issue