https://github.com/annotation/text-fabric
Raw File
Tip revision: 6f483c3ab13cd3ec58d8be789bbacdce8d19a2d3 authored by Dirk Roorda on 10 September 2020, 07:53:43 UTC
addition in walker; improved error messages for missing data modules
Tip revision: 6f483c3
async.py
import asyncio


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


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