999catbot/server/server.py

8 lines
151 B
Python
Raw Normal View History

2024-02-23 01:53:21 +00:00
import time
class Server():
def __init__(self):
i = 0
while True:
i += 1
print(i)
time.sleep(1)