blob: 246363a5f48258b88d80651bc0bcd739f6d2f3af [file] [log] [blame]
def foo(x):
y = x + 2
print(y)
z = 1
foo(z)
z += 1
print(z)