Source Code:
(back to article)
def increment(n): n += 1 x = 1 increment(&x) print(x) # Output: 2
Result:
Report an issue