blob: 9a9bf021ec87594f58f906dc93e1999469c3e353 [file] [log] [blame]
a = 2
b = 3
def bar():
global a, c
a = a + b
c = a * 2
bar()
print(c)