sample_python_uvloop.py 79 B

123456
  1. import uvloop
  2. async def main():
  3. print("Hello world!")
  4. uvloop.run(main())