HomeMAL' // MANUFACTORUM
datacrypt
Piton / tests / errors / arity_too_many.py
tests/errors/arity_too_many.py72 B
def a(b: int, c: int, d: int) -> int:
    return b + c + d
a(1, 2, 3, 4)