Changes in new versions / Python 3.7

# *** in version 3.7: ***
import asyncio


async def greeting():
    print("Hello!")


asyncio.run(greeting())