pikapython/test/python/closure/defvardef.py

10 lines
95 B
Python
Raw Normal View History

2023-02-22 19:26:37 +08:00
def test1(i):
def test2(i):
print('in test2', 'var:', i)
test2(i)
test1(1)