Return the sum of two integers.
(a: int, b: int)
| 11 | return f"{message}, {name}!" |
| 12 | |
| 13 | def add(a: int, b: int): |
| 14 | """Return the sum of two integers.""" |
| 15 | return a + b |
| 16 | |
| 17 | def get_account_balance(user_id: str): |
| 18 | """Return a mock account balance for the given user_id.""" |
no outgoing calls
no test coverage detected