2023-07-06 23:09:49 +08:00

10 lines
95 B
Python

def test1(i):
def test2(i):
print('in test2', 'var:', i)
test2(i)
test1(1)