rozpracovane zmeny

This commit is contained in:
David Brazda
2023-04-19 08:40:02 +02:00
parent e1ce495168
commit 6524b228c4
11 changed files with 277 additions and 22 deletions

7
testy/asyncioRun.py Normal file
View File

@ -0,0 +1,7 @@
import asyncio
async def vysledek():
return 100
a = asyncio.run(vysledek())
print(a)