Skip to content

Instantly share code, notes, and snippets.

@narenaryan
Created January 6, 2022 16:50
Show Gist options
  • Select an option

  • Save narenaryan/ba0b3a4d77bb330f904d6261e55cb004 to your computer and use it in GitHub Desktop.

Select an option

Save narenaryan/ba0b3a4d77bb330f904d6261e55cb004 to your computer and use it in GitHub Desktop.
# A normal function
def add(x: int, y: int):
return x + y
# A co-routine
async def add(x: int, y: int):
return x + y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment