mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
10 lines
95 B
Python
10 lines
95 B
Python
|
|
def test1(i):
|
|
def test2(i):
|
|
print('in test2', 'var:', i)
|
|
|
|
test2(i)
|
|
|
|
|
|
test1(1)
|