pikapython/test/python/closure/defvardef.py
2023-02-22 19:26:37 +08:00

10 lines
95 B
Python

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