async def hello_world(): """ Will great the world with a friendly hello. >>> await hello_world() "hello world" """ return "hello world" if __name__ == "__main__": import doctest doctest.testmod()