mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 06:10:56 +00:00
Just for fun :)
This commit is contained in:
parent
82e934af47
commit
dedda7596d
1 changed files with 7 additions and 0 deletions
7
tools/misc/spin.py
Normal file
7
tools/misc/spin.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
import sys
|
||||
import time
|
||||
spinner = ("('-' )","(._. )","( ._. )","( ._.)","( '-')","( '-' )")
|
||||
for i in range (24):
|
||||
sys.stdout.write (spinner[i%6] + '\r')
|
||||
sys.stdout.flush ()
|
||||
time.sleep (1)
|
Loading…
Reference in a new issue