19
loading...
This website collects cookies to deliver better user experience
import asyncio
def x():
print('Hello World')
import asyncio
async def x():
print('Hello World')
RuntimeWarning: coroutine 'main' was never awaited
import asyncio
async def x():
print('Hello World')
asyncio.run(x())
import asyncio
async def a():
print('a')
await b()
print('c')
async def b():
print('b')
asyncio.run(a())