https://github.com/annotation/text-fabric
Raw File
Tip revision: b53beafcf8ce617a4d706304498dae56bbe4123d authored by Dirk Roorda on 13 September 2023, 06:44:55 UTC
fix in export data function of TF browser
Tip revision: b53beaf
async.py
import asyncio


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


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