Created
May 13, 2026 12:37
-
-
Save mypy-play/d77f961e91be0623f715cca98ac6d44f to your computer and use it in GitHub Desktop.
Shared via mypy Playground
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
| def hello(x: str) -> str: | |
| return f"hello: {x}" | |
| def add(a: float, b: float) -> int: | |
| return int(a + b) | |
| hello("james") | |
| add(5.3, 50) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment