https://github.com/annotation/text-fabric
Raw File
Tip revision: 23998461e463b6fc414468edc35aab38dbf530f8 authored by Dirk Roorda on 14 June 2021, 11:01:43 UTC
small fix in distribution of tf.client.make
Tip revision: 2399846
async.py
import asyncio


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


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