swh:1:snp:a422b851e16cc4f1262b8bf03a4a48e024193f52
Raw File
Tip revision: 93d5c018b3bab5537b476cd74dad70e1641cc9a8 authored by Dirk Roorda on 23 May 2019, 08:17:58 UTC
fix structure/section and app-dependent module loading
Tip revision: 93d5c01
async.py
import asyncio


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


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