Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 169 Bytes

File metadata and controls

9 lines (8 loc) · 169 Bytes

Functions

Local functions

def sum_plus_one(argument: int, b) -> int:
    def plus_one(x):
        return x + 1
    return plus_one(argument + b)