(a: int, b: int)
| 20 | # Check types in this file with: python3 -m mypy <path> |
| 21 | |
| 22 | def subtract(a: int, b: int) -> int: # Function annotation |
| 23 | return a - b |
| 24 | |
| 25 | subtract(10, "5") # Oops: passed string value |
no outgoing calls
no test coverage detected