Raw File
import asyncio


async def main():
  print('hello')
  await asyncio.sleep(1)
  print('world')


print(main)
asyncio.run(main())
back to top