8 lines
121 B
Python
8 lines
121 B
Python
from welcome import WelcomeScreen
|
|
import time
|
|
|
|
ws = WelcomeScreen()
|
|
|
|
while True:
|
|
ws.show_welcome(2)
|
|
time.sleep(1) |