Files
v2realbot/testy/asyncioRun.py
2023-04-19 08:40:02 +02:00

7 lines
90 B
Python

import asyncio
async def vysledek():
return 100
a = asyncio.run(vysledek())
print(a)