mirror of
https://github.com/mewtek/i2ME-Legacy.git
synced 2025-05-11 17:00:23 -05:00
10 lines
155 B
Python
10 lines
155 B
Python
import asyncio
|
|
|
|
async def main():
|
|
print("Hello...")
|
|
await asyncio.sleep(1)
|
|
print("World!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main()) |