9 lines
105 B
Python
9 lines
105 B
Python
import asyncio
|
|
|
|
|
|
async def sleep():
|
|
while True:
|
|
await asyncio.sleep(1)
|
|
|
|
asyncio.run(sleep())
|