untrack asyncio testing script

This commit is contained in:
deng 2023-04-07 15:30:26 +08:00
parent b736e8f082
commit 94e98d3b9e
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
# test_asyncio.py
#
# author: deng
# date : 20230328
import asyncio
async def main():
await asyncio.sleep(1)
print('hello')
if __name__ == '__main__':
asyncio.run(main())