https://github.com/annotation/text-fabric
Raw File
Tip revision: ea6dcdc46b416d2cc26e5f8c1971491e8f23b494 authored by Dirk Roorda on 04 December 2022, 19:22:14 UTC
adapts to running on iPad
Tip revision: ea6dcdc
async.py
import asyncio


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


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