Compare commits

...

1 Commits

Author SHA1 Message Date
94e98d3b9e untrack asyncio testing script 2023-04-07 15:30:26 +08:00

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())