Created
January 6, 2022 16:50
-
-
Save narenaryan/ba0b3a4d77bb330f904d6261e55cb004 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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