blob: 8634ab18bd5357ff20820a8cc98102ab33e9df59 [file] [log] [blame]
def foo(a_new):
print a_new
def bar():
a = 1
b = 2
foo(a)
foo(b)