furizon_webint/stuff/testAsyncio.py

11 lines
118 B
Python
Raw Normal View History

# python merda
import asyncio
async def a():
print("a")
def b():
loop = asyncio.get_event_loop()
print(loop)
b()